aboutsummaryrefslogtreecommitdiff
path: root/DefineOptions.cmake
blob: f7a52442381b0912055ef917c466b0e2387ab2da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
option(WITH_LIBZ "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)
if (WITH_TESTING)
  set(WITH_STATIC_LIB ON)
endif (WITH_TESTING)