summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--testfiles/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/testfiles/CMakeLists.txt b/testfiles/CMakeLists.txt
index 62b028729..2f721d820 100644
--- a/testfiles/CMakeLists.txt
+++ b/testfiles/CMakeLists.txt
@@ -39,7 +39,7 @@ if(WITH_FUZZ)
# (see libfuzzer doc for info in flags)
# first line is for integration into oss-fuzz https://github.com/google/oss-fuzz
add_executable(fuzz fuzzer.cpp)
- if(EXISTS ${LIB_FUZZING_ENGINE})
+ if(LIB_FUZZING_ENGINE)
target_link_libraries(fuzz inkscape_base -lFuzzingEngine)
else()
target_link_libraries(fuzz inkscape_base -lFuzzer)