2018-08-21 12:07:13 +02:00
cmake_minimum_required ( VERSION 3.3.0 )
2018-08-06 16:55:37 +02:00
cmake_policy ( SET CMP0048 NEW )
2009-02-02 14:44:46 +00:00
2018-09-05 15:13:26 +02:00
# Specify search path for CMake modules to be loaded by include()
# and find_package()
list ( APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/Modules" )
# Add defaults for cmake
# Those need to be set before the project() call.
include ( DefineCMakeDefaults )
2018-09-05 15:14:14 +02:00
include ( DefineCompilerFlags )
2018-09-05 15:13:26 +02:00
2018-08-30 08:21:25 +02:00
project ( libssh VERSION 0.8.90 LANGUAGES C )
2009-02-02 14:44:46 +00:00
2018-08-06 16:55:37 +02:00
# global needed variable
2009-02-02 14:44:46 +00:00
set ( APPLICATION_NAME ${ PROJECT_NAME } )
2010-05-12 19:01:25 +02:00
# SOVERSION scheme: CURRENT.AGE.REVISION
2010-03-25 13:24:59 +01:00
# If there was an incompatible interface change:
# Increment CURRENT. Set AGE and REVISION to 0
2010-05-12 19:01:25 +02:00
# If there was a compatible interface change:
# Increment AGE. Set REVISION to 0
# If the source code was changed, but there were no interface changes:
# Increment REVISION.
2018-10-16 09:24:03 +02:00
set ( LIBRARY_VERSION "4.7.1" )
2010-08-18 23:18:57 +02:00
set ( LIBRARY_SOVERSION "4" )
2009-02-02 14:44:46 +00:00
# where to look first for cmake modules, before ${CMAKE_ROOT}/Modules/ is checked
# add definitions
2010-09-08 11:19:22 +02:00
include ( DefinePlatformDefaults )
2009-02-02 14:44:46 +00:00
include ( DefineInstallationPaths )
include ( DefineOptions.cmake )
include ( CPackConfig.cmake )
2018-08-20 15:17:09 +02:00
include ( CompilerChecks.cmake )
2009-02-02 14:44:46 +00:00
# disallow in-source build
include ( MacroEnsureOutOfSourceBuild )
macro_ensure_out_of_source_build ( "${PROJECT_NAME} requires an out of source build. Please create a separate build directory and run 'cmake /path/to/${PROJECT_NAME} [options]' there." )
# search for libraries
2011-09-23 08:00:25 +02:00
if ( WITH_ZLIB )
2010-06-11 10:43:02 +02:00
find_package ( ZLIB REQUIRED )
2011-09-23 08:00:25 +02:00
endif ( WITH_ZLIB )
2009-02-02 14:44:46 +00:00
2009-09-25 23:31:48 +02:00
if ( WITH_GCRYPT )
2012-02-04 20:10:04 +01:00
find_package ( GCrypt 1.5.0 REQUIRED )
2009-05-07 15:07:54 +00:00
if ( NOT GCRYPT_FOUND )
2009-09-25 23:31:48 +02:00
message ( FATAL_ERROR "Could not find GCrypt" )
2009-05-07 15:07:54 +00:00
endif ( NOT GCRYPT_FOUND )
2017-12-28 11:10:43 +01:00
elseif ( WITH_MBEDTLS )
find_package ( MbedTLS REQUIRED )
if ( NOT MBEDTLS_FOUND )
message ( FATAL_ERROR "Could not find mbedTLS" )
endif ( NOT MBEDTLS_FOUND )
2009-09-25 23:31:48 +02:00
else ( WITH_GCRYPT )
find_package ( OpenSSL )
2010-04-20 13:25:46 +02:00
if ( NOT OPENSSL_FOUND )
2009-09-25 23:31:48 +02:00
find_package ( GCrypt )
if ( NOT GCRYPT_FOUND )
2017-12-28 11:10:43 +01:00
find_package ( MbedTLS )
if ( NOT MBEDTLS_FOUND )
message ( FATAL_ERROR "Could not find OpenSSL, GCrypt or mbedTLS" )
endif ( NOT MBEDTLS_FOUND )
2009-09-25 23:31:48 +02:00
endif ( NOT GCRYPT_FOUND )
2010-04-20 13:25:46 +02:00
endif ( NOT OPENSSL_FOUND )
2009-09-25 23:31:48 +02:00
endif ( WITH_GCRYPT )
2009-02-02 14:44:46 +00:00
2010-09-01 15:15:17 +02:00
# Find out if we have threading available
set ( CMAKE_THREAD_PREFER_PTHREADS ON )
2018-07-02 13:03:12 +02:00
set ( THREADS_PREFER_PTHREAD_FLAG ON )
2010-09-01 15:15:17 +02:00
find_package ( Threads )
2013-07-13 15:46:23 +02:00
if ( WITH_GSSAPI )
2013-07-13 15:50:57 +02:00
find_package ( GSSAPI )
2013-07-13 15:46:23 +02:00
endif ( WITH_GSSAPI )
2013-02-20 23:14:59 +01:00
2013-09-21 23:32:51 +02:00
if ( WITH_NACL )
find_package ( NaCl )
if ( NOT NACL_FOUND )
set ( WITH_NACL OFF )
endif ( NOT NACL_FOUND )
endif ( WITH_NACL )
2016-03-14 22:27:06 +01:00
if ( BSD OR SOLARIS OR OSX )
find_package ( Argp )
endif ( BSD OR SOLARIS OR OSX )
2018-05-14 15:55:06 +02:00
# Disable symbol versioning in non UNIX platforms
if ( UNIX )
2018-08-20 18:59:57 +02:00
find_package ( ABIMap 0.3.1 )
2018-05-14 15:55:06 +02:00
else ( UNIX )
set ( WITH_SYMBOL_VERSIONING OFF )
endif ( UNIX )
2009-02-02 14:44:46 +00:00
# config.h checks
include ( ConfigureChecks.cmake )
configure_file ( config.h.cmake ${ CMAKE_CURRENT_BINARY_DIR } /config.h )
# check subdirectories
2009-02-03 10:43:45 +00:00
add_subdirectory ( doc )
2009-02-02 14:44:46 +00:00
add_subdirectory ( include )
2010-09-06 14:28:38 +02:00
add_subdirectory ( src )
2009-02-02 14:44:46 +00:00
2009-12-30 13:34:17 +08:00
# pkg-config file
2015-09-07 07:46:11 +02:00
if ( UNIX )
2009-12-30 13:34:17 +08:00
configure_file ( libssh.pc.cmake ${ CMAKE_CURRENT_BINARY_DIR } /libssh.pc )
install (
F I L E S
$ { C M A K E _ C U R R E N T _ B I N A R Y _ D I R } / l i b s s h . p c
D E S T I N A T I O N
$ { L I B _ I N S T A L L _ D I R } / p k g c o n f i g
C O M P O N E N T
p k g c o n f i g
)
2015-09-07 07:46:11 +02:00
endif ( UNIX )
2013-02-12 13:31:42 +01:00
# cmake config files
2014-12-17 10:38:56 +01:00
set ( LIBSSH_LIBRARY_NAME ${ CMAKE_SHARED_LIBRARY_PREFIX } ssh ${ CMAKE_SHARED_LIBRARY_SUFFIX } )
2014-05-22 14:52:52 +02:00
configure_file ( ${ PROJECT_NAME } -config.cmake.in ${ CMAKE_CURRENT_BINARY_DIR } / ${ PROJECT_NAME } -config.cmake @ONLY )
configure_file ( ${ PROJECT_NAME } -config-version.cmake.in ${ CMAKE_CURRENT_BINARY_DIR } / ${ PROJECT_NAME } -config-version.cmake @ONLY )
2013-02-12 13:31:42 +01:00
install (
F I L E S
2014-05-22 14:52:52 +02:00
$ { C M A K E _ C U R R E N T _ B I N A R Y _ D I R } / $ { P R O J E C T _ N A M E } - c o n f i g . c m a k e
$ { C M A K E _ C U R R E N T _ B I N A R Y _ D I R } / $ { P R O J E C T _ N A M E } - c o n f i g - v e r s i o n . c m a k e
2013-02-12 13:31:42 +01:00
D E S T I N A T I O N
2014-05-22 14:52:52 +02:00
$ { C M A K E _ I N S T A L L _ D I R } / $ { P R O J E C T _ N A M E }
2013-02-12 13:31:42 +01:00
C O M P O N E N T
d e v e l
)
2014-05-22 14:52:52 +02:00
2013-02-12 13:31:42 +01:00
# in tree build settings
configure_file ( libssh-build-tree-settings.cmake.in ${ CMAKE_CURRENT_BINARY_DIR } /libssh-build-tree-settings.cmake @ONLY )
2013-09-16 08:21:12 +02:00
if ( WITH_EXAMPLES )
add_subdirectory ( examples )
endif ( WITH_EXAMPLES )
2010-03-02 13:47:14 +01:00
2018-06-29 10:29:02 +02:00
if ( UNIT_TESTING )
2012-10-07 11:10:27 +02:00
find_package ( CMocka REQUIRED )
include ( AddCMockaTest )
2010-03-02 13:47:14 +01:00
add_subdirectory ( tests )
2018-06-29 10:29:02 +02:00
endif ( UNIT_TESTING )
2010-03-02 13:47:14 +01:00
2018-05-14 15:55:06 +02:00
### SOURCE PACKAGE
if ( WITH_SYMBOL_VERSIONING AND ABIMAP_FOUND )
# Get the current ABI version from source
get_filename_component ( current_abi_path
" $ { C M A K E _ S O U R C E _ D I R } / s r c / A B I / c u r r e n t "
A B S O L U T E )
# Check if the ABI version should be updated
file ( READ ${ current_abi_path } CURRENT_ABI_CONTENT )
string ( STRIP "${CURRENT_ABI_CONTENT}" CURRENT_ABI_VERSION )
if ( LIBRARY_VERSION VERSION_GREATER CURRENT_ABI_VERSION )
set ( UPDATE_ABI TRUE )
endif ( )
if ( UPDATE_ABI )
message ( STATUS "Library version bumped to ${LIBRARY_VERSION}: Updating ABI" )
# Get the list of header files
2018-08-28 18:36:55 +02:00
get_file_list ( ${ PROJECT_NAME } _header_list
2018-05-14 15:55:06 +02:00
D I R E C T O R I E S " $ { C M A K E _ S O U R C E _ D I R } / i n c l u d e / l i b s s h "
F I L E S _ P A T T E R N S " * . h " )
# Extract the symbols marked as "LIBSSH_API" from the header files
extract_symbols ( ${ PROJECT_NAME } .symbols
2018-08-28 18:36:55 +02:00
H E A D E R S _ L I S T $ { P R O J E C T _ N A M E } _ h e a d e r _ l i s t
2018-05-14 15:55:06 +02:00
F I L T E R _ P A T T E R N " L I B S S H _ A P I "
C O P Y _ T O " $ { C M A K E _ S O U R C E _ D I R } / s r c / A B I / $ { P R O J E C T _ N A M E } - $ { L I B R A R Y _ V E R S I O N } . s y m b o l s " )
if ( WITH_ABI_BREAK )
set ( ALLOW_ABI_BREAK "BREAK_ABI" )
endif ( )
# Target we can depend on in 'make dist'
set ( _SYMBOL_TARGET "${PROJECT_NAME}.map" )
# Set the path to the current map file
set ( MAP_PATH "${CMAKE_SOURCE_DIR}/src/${_SYMBOL_TARGET}" )
# Generate the symbol version map file
generate_map_file ( ${ _SYMBOL_TARGET }
2018-08-28 18:36:55 +02:00
S Y M B O L S $ { P R O J E C T _ N A M E } . s y m b o l s
2018-05-14 15:55:06 +02:00
R E L E A S E _ N A M E _ V E R S I O N $ { P R O J E C T _ N A M E } _ $ { L I B R A R Y _ V E R S I O N }
C U R R E N T _ M A P $ { M A P _ P A T H }
C O P Y _ T O $ { M A P _ P A T H }
F I N A L
$ { A L L O W _ A B I _ B R E A K } )
# Write the current version to the source
file ( WRITE ${ current_abi_path } ${ LIBRARY_VERSION } )
endif ( UPDATE_ABI )
endif ( WITH_SYMBOL_VERSIONING AND ABIMAP_FOUND )
add_custom_target ( dist COMMAND ${ CMAKE_MAKE_PROGRAM } package_source DEPENDS ${ _SYMBOL_TARGET } )
2010-12-19 17:29:17 +01:00
2010-03-02 23:37:49 +01:00
message ( STATUS "********************************************" )
message ( STATUS "********** ${PROJECT_NAME} build options : **********" )
2010-02-08 16:55:03 +01:00
2011-09-23 08:00:25 +02:00
message ( STATUS "zlib support: ${WITH_ZLIB}" )
2010-03-02 23:37:49 +01:00
message ( STATUS "libgcrypt support: ${WITH_GCRYPT}" )
2017-12-28 11:10:43 +01:00
message ( STATUS "libmbedTLS support: ${WITH_MBEDTLS}" )
2013-09-21 23:32:51 +02:00
message ( STATUS "libnacl support: ${WITH_NACL}" )
2010-03-02 23:37:49 +01:00
message ( STATUS "SFTP support: ${WITH_SFTP}" )
message ( STATUS "Server support : ${WITH_SERVER}" )
2013-02-20 23:14:59 +01:00
message ( STATUS "GSSAPI support : ${WITH_GSSAPI}" )
2010-03-02 23:37:49 +01:00
message ( STATUS "Pcap debugging support : ${WITH_PCAP}" )
2012-10-15 11:55:42 +02:00
message ( STATUS "With static library: ${WITH_STATIC_LIB}" )
2018-06-29 10:29:02 +02:00
message ( STATUS "Unit testing: ${UNIT_TESTING}" )
2018-07-04 20:33:31 +02:00
message ( STATUS "Client code testing: ${CLIENT_TESTING}" )
set ( _SERVER_TESTING OFF )
if ( WITH_SERVER )
set ( _SERVER_TESTING ${ SERVER_TESTING } )
endif ( )
message ( STATUS "Server code testing: ${_SERVER_TESTING}" )
2010-02-08 16:55:03 +01:00
if ( WITH_INTERNAL_DOC )
2010-03-02 23:37:49 +01:00
message ( STATUS "Internal documentation generation" )
2010-02-08 16:55:03 +01:00
else ( WITH_INTERNAL_DOC )
2010-03-02 23:37:49 +01:00
message ( STATUS "Public API documentation generation" )
2010-02-08 16:55:03 +01:00
endif ( WITH_INTERNAL_DOC )
2010-12-19 17:29:17 +01:00
message ( STATUS "Benchmarks: ${WITH_BENCHMARKS}" )
2018-05-14 15:55:06 +02:00
message ( STATUS "Symbol versioning: ${WITH_SYMBOL_VERSIONING}" )
message ( STATUS "Allow ABI break: ${WITH_ABI_BREAK}" )
message ( STATUS "Release is final: ${WITH_FINAL}" )
2010-03-02 23:37:49 +01:00
message ( STATUS "********************************************" )
2010-02-08 16:55:03 +01:00