diff options
Diffstat (limited to 'DefineOptions.cmake')
-rw-r--r-- | DefineOptions.cmake | 5 |
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) |