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