From 350dcac0329b054765b7b498786d8c34967e5bee Mon Sep 17 00:00:00 2001 From: Arthur Sonzogni Date: Tue, 17 Jan 2023 17:36:59 +0100 Subject: [PATCH] Fix build about fuzzer. (#557) Previous patch introduced a regression. The condition needs to be inverted. Fixed:https://github.com/ArthurSonzogni/FTXUI/issues/556 --- cmake/ftxui_fuzzer.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/ftxui_fuzzer.cmake b/cmake/ftxui_fuzzer.cmake index 0377197..5d5d516 100644 --- a/cmake/ftxui_fuzzer.cmake +++ b/cmake/ftxui_fuzzer.cmake @@ -1,4 +1,4 @@ -if (FTXUI_BUILD_TESTS_FUZZER) +if (NOT FTXUI_BUILD_TESTS_FUZZER) return() endif()