mirror of
https://git.libssh.org/projects/libssh.git
synced 2026-02-12 11:10:28 +09:00
cmake: Reformat DefineOptions.cmake with cmake-format
Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
(cherry picked from commit 12ccea8dd8)
This commit is contained in:
committed by
Jakub Jelen
parent
a5e4b12090
commit
f49b4442a9
@@ -12,20 +12,35 @@ option(WITH_PCAP "Compile with Pcap generation support" ON)
|
|||||||
option(WITH_INTERNAL_DOC "Compile doxygen internal documentation" OFF)
|
option(WITH_INTERNAL_DOC "Compile doxygen internal documentation" OFF)
|
||||||
option(BUILD_SHARED_LIBS "Build shared libraries" ON)
|
option(BUILD_SHARED_LIBS "Build shared libraries" ON)
|
||||||
option(WITH_PKCS11_URI "Build with PKCS#11 URI support" OFF)
|
option(WITH_PKCS11_URI "Build with PKCS#11 URI support" OFF)
|
||||||
option(WITH_PKCS11_PROVIDER "Use the PKCS#11 provider for accessing pkcs11 objects" OFF)
|
option(WITH_PKCS11_PROVIDER
|
||||||
|
"Use the PKCS#11 provider for accessing pkcs11 objects" OFF)
|
||||||
option(UNIT_TESTING "Build with unit tests" OFF)
|
option(UNIT_TESTING "Build with unit tests" OFF)
|
||||||
option(CLIENT_TESTING "Build with client tests; requires openssh" OFF)
|
option(CLIENT_TESTING "Build with client tests; requires openssh" OFF)
|
||||||
option(SERVER_TESTING "Build with server tests; requires openssh and dropbear" OFF)
|
option(SERVER_TESTING "Build with server tests; requires openssh and dropbear"
|
||||||
option(GSSAPI_TESTING "Build with GSSAPI tests; requires krb5-server,krb5-libs and krb5-workstation" OFF)
|
OFF)
|
||||||
option(WITH_BENCHMARKS "Build benchmarks tools; enables unit testing and client tests" OFF)
|
option(
|
||||||
|
GSSAPI_TESTING
|
||||||
|
"Build with GSSAPI tests; requires krb5-server,krb5-libs and krb5-workstation"
|
||||||
|
OFF)
|
||||||
|
option(WITH_BENCHMARKS
|
||||||
|
"Build benchmarks tools; enables unit testing and client tests" OFF)
|
||||||
option(WITH_EXAMPLES "Build examples" ON)
|
option(WITH_EXAMPLES "Build examples" ON)
|
||||||
option(WITH_NACL "Build with libnacl (curve25519)" ON)
|
option(WITH_NACL "Build with libnacl (curve25519)" ON)
|
||||||
option(WITH_SYMBOL_VERSIONING "Build with symbol versioning" ON)
|
option(WITH_SYMBOL_VERSIONING "Build with symbol versioning" ON)
|
||||||
option(WITH_ABI_BREAK "Allow ABI break" OFF)
|
option(WITH_ABI_BREAK "Allow ABI break" OFF)
|
||||||
option(WITH_GEX "Enable DH Group exchange mechanisms" ON)
|
option(WITH_GEX "Enable DH Group exchange mechanisms" ON)
|
||||||
option(WITH_INSECURE_NONE "Enable insecure none cipher and MAC algorithms (not suitable for production!)" OFF)
|
option(
|
||||||
option(WITH_EXEC "Enable libssh to execute arbitrary commands from configuration files or options (match exec, proxy commands and OpenSSH-based proxy-jumps)." ON)
|
WITH_INSECURE_NONE
|
||||||
option(FUZZ_TESTING "Build with fuzzer for the server and client (automatically enables none cipher!)" OFF)
|
"Enable insecure none cipher and MAC algorithms (not suitable for production!)"
|
||||||
|
OFF)
|
||||||
|
option(
|
||||||
|
WITH_EXEC
|
||||||
|
"Enable libssh to execute arbitrary commands from configuration files or options (match exec, proxy commands and OpenSSH-based proxy-jumps)."
|
||||||
|
ON)
|
||||||
|
option(
|
||||||
|
FUZZ_TESTING
|
||||||
|
"Build with fuzzer for the server and client (automatically enables none cipher!)"
|
||||||
|
OFF)
|
||||||
option(PICKY_DEVELOPER "Build with picky developer flags" OFF)
|
option(PICKY_DEVELOPER "Build with picky developer flags" OFF)
|
||||||
|
|
||||||
if (WITH_ZLIB)
|
if (WITH_ZLIB)
|
||||||
@@ -37,11 +52,14 @@ endif (WITH_ZLIB)
|
|||||||
if (WITH_BENCHMARKS)
|
if (WITH_BENCHMARKS)
|
||||||
set(UNIT_TESTING ON)
|
set(UNIT_TESTING ON)
|
||||||
set(CLIENT_TESTING ON)
|
set(CLIENT_TESTING ON)
|
||||||
endif()
|
endif ()
|
||||||
|
|
||||||
if (UNIT_TESTING OR CLIENT_TESTING OR SERVER_TESTING OR GSSAPI_TESTING)
|
if (UNIT_TESTING
|
||||||
|
OR CLIENT_TESTING
|
||||||
|
OR SERVER_TESTING
|
||||||
|
OR GSSAPI_TESTING)
|
||||||
set(BUILD_STATIC_LIB ON)
|
set(BUILD_STATIC_LIB ON)
|
||||||
endif()
|
endif ()
|
||||||
|
|
||||||
if (WITH_NACL)
|
if (WITH_NACL)
|
||||||
set(WITH_NACL ON)
|
set(WITH_NACL ON)
|
||||||
@@ -65,4 +83,4 @@ endif (FUZZ_TESTING)
|
|||||||
|
|
||||||
if (WIN32)
|
if (WIN32)
|
||||||
set(WITH_EXEC 0)
|
set(WITH_EXEC 0)
|
||||||
endif(WIN32)
|
endif (WIN32)
|
||||||
|
|||||||
Reference in New Issue
Block a user