2011-08-21 14:39:16 +04:00
|
|
|
option(WITH_ZLIB "Build with ZLIB support" ON)
|
2009-02-02 17:44:46 +03:00
|
|
|
option(WITH_SSH1 "Build with SSH1 support" OFF)
|
2009-04-27 14:58:29 +04:00
|
|
|
option(WITH_SFTP "Build with SFTP support" ON)
|
2009-03-29 00:56:28 +03:00
|
|
|
option(WITH_SERVER "Build with SSH server support" ON)
|
2009-03-25 18:01:33 +03:00
|
|
|
option(WITH_STATIC_LIB "Build with a static library" OFF)
|
2009-08-12 12:08:20 +04:00
|
|
|
option(WITH_DEBUG_CRYPTO "Build with cryto debug output" OFF)
|
|
|
|
option(WITH_DEBUG_CALLTRACE "Build with calltrace debug output" ON)
|
2009-09-26 01:31:48 +04:00
|
|
|
option(WITH_GCRYPT "Compile against libgcrypt" OFF)
|
2009-11-27 20:18:12 +03:00
|
|
|
option(WITH_PCAP "Compile with Pcap generation support" ON)
|
2009-12-17 01:19:18 +03:00
|
|
|
option(WITH_INTERNAL_DOC "Compile doxygen internal documentation" OFF)
|
2010-03-02 15:47:14 +03:00
|
|
|
option(WITH_TESTING "Build with unit tests" OFF)
|
2010-06-03 14:36:00 +04:00
|
|
|
option(WITH_CLIENT_TESTING "Build with client tests; requires a running sshd" OFF)
|
2010-12-19 19:29:17 +03:00
|
|
|
option(WITH_BENCHMARKS "Build benchmarks tools" OFF)
|
2010-12-28 15:50:34 +03:00
|
|
|
|
2011-08-21 14:39:16 +04:00
|
|
|
if (WITH_ZLIB)
|
|
|
|
set(WITH_ZLIB ON)
|
|
|
|
else (WITH_ZLIB)
|
|
|
|
set(WITH_ZLIB OFF)
|
|
|
|
endif (WITH_ZLIB)
|
|
|
|
|
2010-12-28 15:50:34 +03:00
|
|
|
if(WITH_BENCHMARKS)
|
|
|
|
set(WITH_TESTING ON)
|
|
|
|
endif(WITH_BENCHMARKS)
|
|
|
|
|
2010-03-03 01:48:45 +03:00
|
|
|
if (WITH_TESTING)
|
|
|
|
set(WITH_STATIC_LIB ON)
|
|
|
|
endif (WITH_TESTING)
|