Fix build about fuzzer. (#557)

Previous patch introduced a regression. The condition needs to be
inverted.

Fixed:https://github.com/ArthurSonzogni/FTXUI/issues/556
This commit is contained in:
Arthur Sonzogni 2023-01-17 17:36:59 +01:00 committed by GitHub
parent 65848d1e5f
commit 350dcac032
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,4 @@
if (FTXUI_BUILD_TESTS_FUZZER)
if (NOT FTXUI_BUILD_TESTS_FUZZER)
return()
endif()