aboutsummaryrefslogtreecommitdiff
path: root/DefineOptions.cmake
diff options
context:
space:
mode:
authorAndreas Schneider <asn@cryptomilk.org>2013-05-28 14:53:40 +0200
committerAndreas Schneider <asn@cryptomilk.org>2013-05-28 14:53:40 +0200
commita0a8ea66722ff75109eecb12a48b2487f103142a (patch)
treec5a622d83aeb69ee26c791b2b74ee6646d176eaf /DefineOptions.cmake
parent48d46cac3f21805eedc39a53cb224735c46ab77a (diff)
downloadsocket_wrapper-a0a8ea66722ff75109eecb12a48b2487f103142a.tar.gz
socket_wrapper-a0a8ea66722ff75109eecb12a48b2487f103142a.tar.xz
socket_wrapper-a0a8ea66722ff75109eecb12a48b2487f103142a.zip
tests: Add test as cmocka test.
Diffstat (limited to 'DefineOptions.cmake')
-rw-r--r--DefineOptions.cmake26
1 files changed, 0 insertions, 26 deletions
diff --git a/DefineOptions.cmake b/DefineOptions.cmake
index ea8265c..aca40a5 100644
--- a/DefineOptions.cmake
+++ b/DefineOptions.cmake
@@ -1,27 +1 @@
-option(WITH_ZLIB "Build with ZLIB support" ON)
-option(WITH_SSH1 "Build with SSH1 support" OFF)
-option(WITH_SFTP "Build with SFTP support" ON)
-option(WITH_SERVER "Build with SSH server support" ON)
-option(WITH_STATIC_LIB "Build with a static library" OFF)
-option(WITH_DEBUG_CRYPTO "Build with cryto debug output" OFF)
-option(WITH_DEBUG_CALLTRACE "Build with calltrace debug output" ON)
-option(WITH_GCRYPT "Compile against libgcrypt" 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(WITH_CLIENT_TESTING "Build with client tests; requires a running sshd" OFF)
-option(WITH_BENCHMARKS "Build benchmarks tools" OFF)
-
-if (WITH_ZLIB)
- set(WITH_LIBZ ON)
-else (WITH_ZLIB)
- set(WITH_LIBZ OFF)
-endif (WITH_ZLIB)
-
-if(WITH_BENCHMARKS)
- set(WITH_TESTING ON)
-endif(WITH_BENCHMARKS)
-
-if (WITH_TESTING)
- set(WITH_STATIC_LIB ON)
-endif (WITH_TESTING)