aboutsummaryrefslogtreecommitdiffstats
path: root/CMakeOptions.txt
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2022-03-09 10:11:25 -0800
committerGerald Combs <gerald@wireshark.org>2022-03-11 17:35:49 +0000
commite39b9a2f805bc3522f41deb99840433c97276bfe (patch)
tree7f66b1c0aee418684cc6b5da9846dfa79c07395e /CMakeOptions.txt
parent3bfc864c72366ff3ecb8fd3c03b73eed2abd9eb2 (diff)
CMake: Disable fuzzshark by default.
Most people don't use fuzzshark, so don't waste compute resources building it. OSS-Fuzz has been updated to always build fuzzshark in https://github.com/google/oss-fuzz/pull/7373
Diffstat (limited to 'CMakeOptions.txt')
-rw-r--r--CMakeOptions.txt6
1 files changed, 1 insertions, 5 deletions
diff --git a/CMakeOptions.txt b/CMakeOptions.txt
index 81fc8f4d44..e130951bc9 100644
--- a/CMakeOptions.txt
+++ b/CMakeOptions.txt
@@ -42,12 +42,8 @@ endif()
option(BUILD_udpdump "Build udpdump" ON)
option(BUILD_sharkd "Build sharkd" ON)
-if(WIN32)
- option(BUILD_fuzzshark "Build fuzzshark" OFF)
-else()
- option(BUILD_fuzzshark "Build fuzzshark" ON)
-endif()
option(BUILD_mmdbresolve "Build MaxMind DB resolver" ON)
+option(BUILD_fuzzshark "Build fuzzshark" OFF)
option(ENABLE_WERROR "Treat warnings as errors" ON)
option(ENABLE_DEBUG "Enable debug code" ON)