From 25ff1214a40531cea33a91eed6225d4f4bf51cbc Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Sun, 4 Feb 2018 11:49:13 +0100 Subject: cmake: Build ssh_server_fuzzer if enabled Fixes T67 Signed-off-by: Andreas Schneider --- DefineOptions.cmake | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'DefineOptions.cmake') 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) -- cgit v1.2.1