Skip to content

Commit

Permalink
Disable fuzz-test builds by default
Browse files Browse the repository at this point in the history
  • Loading branch information
nathaniel-brough committed Nov 7, 2023
1 parent 333c79c commit acbea49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ set(QL_INSTALL_CMAKEDIR "lib/cmake/${PACKAGE_NAME}" CACHE STRING
option(QL_BUILD_BENCHMARK "Build benchmark" ON)
option(QL_BUILD_EXAMPLES "Build examples" ON)
option(QL_BUILD_TEST_SUITE "Build test suite" ON)
cmake_dependent_option(QL_BUILD_FUZZ_TEST_SUITE "Build fuzz test suite" ON "'${CMAKE_CXX_COMPILER_ID}' MATCHES 'Clang'" OFF)
cmake_dependent_option(QL_BUILD_FUZZ_TEST_SUITE "Build fuzz test suite" OFF "'${CMAKE_CXX_COMPILER_ID}' MATCHES 'Clang'" OFF)
option(QL_ENABLE_OPENMP "Detect and use OpenMP" OFF)
option(QL_ENABLE_PARALLEL_UNIT_TEST_RUNNER "Enable the parallel unit test runner" OFF)
option(QL_ENABLE_SESSIONS "Singletons return different instances for different sessions" OFF)
Expand Down

0 comments on commit acbea49

Please sign in to comment.