aboutsummaryrefslogtreecommitdiff
path: root/DefineOptions.cmake
diff options
context:
space:
mode:
authorAndreas Schneider <asn@cryptomilk.org>2018-02-04 11:49:13 +0100
committerAndreas Schneider <asn@cryptomilk.org>2018-02-04 11:52:45 +0100
commit25ff1214a40531cea33a91eed6225d4f4bf51cbc (patch)
tree6a43300bf0e84762996ef54ce46b471a929831e4 /DefineOptions.cmake
parentd84b0926f0ff285466d0a9d9ca631f1dfbd3a75e (diff)
downloadlibssh-25ff1214a40531cea33a91eed6225d4f4bf51cbc.tar.gz
libssh-25ff1214a40531cea33a91eed6225d4f4bf51cbc.tar.xz
libssh-25ff1214a40531cea33a91eed6225d4f4bf51cbc.zip
cmake: Build ssh_server_fuzzer if enabled
Fixes T67 Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
Diffstat (limited to 'DefineOptions.cmake')
-rw-r--r--DefineOptions.cmake5
1 files changed, 3 insertions, 2 deletions
diff --git a/DefineOptions.cmake b/DefineOptions.cmake
index a2a8c5e6..43457e54 100644
--- a/DefineOptions.cmake
+++ b/DefineOptions.cmake
@@ -14,7 +14,8 @@ option(WITH_TESTING "Build with unit tests" OFF)
option(WITH_CLIENT_TESTING "Build with client tests; requires a running sshd" OFF)
option(WITH_BENCHMARKS "Build benchmarks tools" OFF)
option(WITH_EXAMPLES "Build examples" ON)
-option(WITH_NACL "Build with libnacl (curve25519" ON)
+option(WITH_NACL "Build with libnacl (curve25519)" ON)
+option(FUZZ_TESTING "Build with fuzzer for the server" OFF)
if (WITH_ZLIB)
set(WITH_LIBZ ON)
else (WITH_ZLIB)
@@ -31,4 +32,4 @@ endif (WITH_TESTING)
if (WITH_NACL)
set(WITH_NACL ON)
-endif (WITH_NACL) \ No newline at end of file
+endif (WITH_NACL)