aboutsummaryrefslogtreecommitdiff
path: root/DefineOptions.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'DefineOptions.cmake')
-rw-r--r--DefineOptions.cmake8
1 files changed, 4 insertions, 4 deletions
diff --git a/DefineOptions.cmake b/DefineOptions.cmake
index 6eda2c23..4f8bdafc 100644
--- a/DefineOptions.cmake
+++ b/DefineOptions.cmake
@@ -11,7 +11,7 @@ option(WITH_GCRYPT "Compile against libgcrypt" OFF)
option(WITH_MBEDTLS "Compile against libmbedtls" OFF)
option(WITH_PCAP "Compile with Pcap generation support" ON)
option(WITH_INTERNAL_DOC "Compile doxygen internal documentation" OFF)
-option(WITH_TESTING "Build with unit tests" OFF)
+option(UNIT_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)
@@ -24,12 +24,12 @@ else (WITH_ZLIB)
endif (WITH_ZLIB)
if(WITH_BENCHMARKS)
- set(WITH_TESTING ON)
+ set(UNIT_TESTING ON)
endif(WITH_BENCHMARKS)
-if (WITH_TESTING)
+if (UNIT_TESTING)
set(WITH_STATIC_LIB ON)
-endif (WITH_TESTING)
+endif (UNIT_TESTING)
if (WITH_NACL)
set(WITH_NACL ON)