Michal Vasko | 8e08c96 | 2016-02-09 14:09:11 +0100 | [diff] [blame] | 1 | cmake_minimum_required(VERSION 2.6) |
Claus Klein | 2209191 | 2020-01-20 13:45:47 +0100 | [diff] [blame] | 2 | |
Michal Vasko | df67eb4 | 2020-02-06 16:22:07 +0100 | [diff] [blame] | 3 | project(libnetconf2 C) |
Claus Klein | 2209191 | 2020-01-20 13:45:47 +0100 | [diff] [blame] | 4 | |
Michal Vasko | 9e8ac26 | 2020-04-07 13:06:45 +0200 | [diff] [blame] | 5 | # include custom Modules |
| 6 | list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/CMakeModules/") |
| 7 | |
Jan Kundrát | b78cdfc | 2016-11-04 17:11:24 +0100 | [diff] [blame] | 8 | include(GNUInstallDirs) |
Michal Vasko | 9aa3c6a | 2018-11-12 08:50:10 +0100 | [diff] [blame] | 9 | include(CheckFunctionExists) |
Michal Vasko | 32af614 | 2019-01-23 09:30:42 +0100 | [diff] [blame] | 10 | include(CheckCSourceCompiles) |
Michal Vasko | 352c390 | 2018-11-12 09:16:59 +0100 | [diff] [blame] | 11 | include(CheckIncludeFile) |
Michal Vasko | 9e8ac26 | 2020-04-07 13:06:45 +0200 | [diff] [blame] | 12 | include(UseCompat) |
Claus Klein | 2209191 | 2020-01-20 13:45:47 +0100 | [diff] [blame] | 13 | |
Michal Vasko | d612369 | 2019-07-16 16:04:16 +0200 | [diff] [blame] | 14 | if(POLICY CMP0075) |
| 15 | cmake_policy(SET CMP0075 NEW) |
| 16 | endif() |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 17 | |
Michal Vasko | 6779d18 | 2016-02-17 14:36:36 +0100 | [diff] [blame] | 18 | set(LIBNETCONF2_DESCRIPTION "NETCONF server and client library in C.") |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 19 | |
| 20 | # check the supported platform |
| 21 | if(NOT UNIX) |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 22 | message(FATAL_ERROR "Only *nix like systems are supported.") |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 23 | endif() |
| 24 | |
Michal Vasko | 63b52fc | 2018-02-16 10:08:17 +0100 | [diff] [blame] | 25 | # osx specific |
| 26 | set(CMAKE_MACOSX_RPATH TRUE) |
| 27 | |
Jan Kundrát | b78cdfc | 2016-11-04 17:11:24 +0100 | [diff] [blame] | 28 | set(INCLUDE_INSTALL_SUBDIR ${CMAKE_INSTALL_INCLUDEDIR}/libnetconf2) |
| 29 | set(DATA_INSTALL_DIR ${CMAKE_INSTALL_DATADIR}/libnetconf2) |
Michal Vasko | d5f09ba | 2016-02-23 15:44:58 +0100 | [diff] [blame] | 30 | |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 31 | # set default build type if not specified by user |
| 32 | if(NOT CMAKE_BUILD_TYPE) |
Claus Klein | 2209191 | 2020-01-20 13:45:47 +0100 | [diff] [blame] | 33 | set(CMAKE_BUILD_TYPE Debug) |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 34 | endif() |
| 35 | |
Claus Klein | 2209191 | 2020-01-20 13:45:47 +0100 | [diff] [blame] | 36 | set(CMAKE_C_STANDARD 11) |
| 37 | set(CMAKE_CXX_EXTENSIONS ON) |
| 38 | add_compile_options(-Wall -Wextra -fvisibility=hidden) |
PavolVican | 384786e | 2017-07-12 15:31:20 +0200 | [diff] [blame] | 39 | set(CMAKE_C_FLAGS_PACKAGE "-g -O2 -DNDEBUG") |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 40 | |
Michal Vasko | 08d5cde | 2019-07-10 14:34:55 +0200 | [diff] [blame] | 41 | # Version of the project |
| 42 | # Generic version of not only the library. Major version is reserved for really big changes of the project, |
| 43 | # minor version changes with added functionality (new tool, functionality of the tool or library, ...) and |
| 44 | # micro version is changed with a set of small changes or bugfixes anywhere in the project. |
| 45 | set(LIBNETCONF2_MAJOR_VERSION 1) |
Michal Vasko | 8afb2ed | 2019-11-05 12:07:34 +0100 | [diff] [blame] | 46 | set(LIBNETCONF2_MINOR_VERSION 1) |
Michal Vasko | cd40191 | 2020-04-16 09:32:52 +0200 | [diff] [blame] | 47 | set(LIBNETCONF2_MICRO_VERSION 20) |
Radek Krejci | 4f2d40d | 2015-10-08 12:55:01 +0200 | [diff] [blame] | 48 | set(LIBNETCONF2_VERSION ${LIBNETCONF2_MAJOR_VERSION}.${LIBNETCONF2_MINOR_VERSION}.${LIBNETCONF2_MICRO_VERSION}) |
Michal Vasko | 08d5cde | 2019-07-10 14:34:55 +0200 | [diff] [blame] | 49 | |
| 50 | # Version of the library |
| 51 | # Major version is changed with every backward non-compatible API/ABI change in libyang, minor version changes |
| 52 | # with backward compatible change and micro version is connected with any internal change of the library. |
| 53 | set(LIBNETCONF2_MAJOR_SOVERSION 1) |
Michal Vasko | ee9d740 | 2020-04-16 09:03:59 +0200 | [diff] [blame] | 54 | set(LIBNETCONF2_MINOR_SOVERSION 3) |
Michal Vasko | b6ec363 | 2020-04-16 09:32:41 +0200 | [diff] [blame] | 55 | set(LIBNETCONF2_MICRO_SOVERSION 1) |
Michal Vasko | 08d5cde | 2019-07-10 14:34:55 +0200 | [diff] [blame] | 56 | set(LIBNETCONF2_SOVERSION_FULL ${LIBNETCONF2_MAJOR_SOVERSION}.${LIBNETCONF2_MINOR_SOVERSION}.${LIBNETCONF2_MICRO_SOVERSION}) |
| 57 | set(LIBNETCONF2_SOVERSION ${LIBNETCONF2_MAJOR_SOVERSION}) |
Radek Krejci | 4f2d40d | 2015-10-08 12:55:01 +0200 | [diff] [blame] | 58 | |
Radek Krejci | ac6d347 | 2015-10-22 15:47:18 +0200 | [diff] [blame] | 59 | # build options |
Michal Vasko | fb2fb76 | 2015-10-27 11:44:32 +0100 | [diff] [blame] | 60 | option(ENABLE_SSH "Enable NETCONF over SSH support (via libssh)" ON) |
Michal Vasko | 061dc80 | 2016-02-29 10:15:28 +0100 | [diff] [blame] | 61 | option(ENABLE_TLS "Enable NETCONF over TLS support (via OpenSSL)" ON) |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 62 | option(ENABLE_DNSSEC "Enable support for SSHFP retrieval using DNSSEC for SSH (requires OpenSSL and libval)" OFF) |
Radek Krejci | c61f0b4 | 2017-06-07 13:21:41 +0200 | [diff] [blame] | 63 | option(ENABLE_PYTHON "Include bindings for Python 3" OFF) |
Michal Vasko | f471fa0 | 2017-02-15 10:48:12 +0100 | [diff] [blame] | 64 | set(READ_INACTIVE_TIMEOUT 20 CACHE STRING "Maximum number of seconds waiting for new data once some data have arrived") |
| 65 | set(READ_ACTIVE_TIMEOUT 300 CACHE STRING "Maximum number of seconds for receiving a full message") |
| 66 | set(MAX_PSPOLL_THREAD_COUNT 6 CACHE STRING "Maximum number of threads that could simultaneously access a ps_poll structure") |
Michal Vasko | 5a9bd9c | 2019-08-16 15:50:09 +0200 | [diff] [blame] | 67 | set(TIMEOUT_STEP 100 CACHE STRING "Number of microseconds tasks are repeated until timeout elapses") |
Michal Vasko | ff7e356 | 2018-02-15 13:41:22 +0100 | [diff] [blame] | 68 | set(SCHEMAS_DIR "${CMAKE_INSTALL_PREFIX}/${DATA_INSTALL_DIR}" CACHE STRING "Directory with internal lnc2 schemas") |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 69 | |
| 70 | if(ENABLE_DNSSEC AND NOT ENABLE_SSH) |
| 71 | message(WARNING "DNSSEC SSHFP retrieval cannot be used without SSH support.") |
| 72 | set(ENABLE_DNSSEC OFF) |
| 73 | endif() |
Radek Krejci | ac6d347 | 2015-10-22 15:47:18 +0200 | [diff] [blame] | 74 | |
Claus Klein | 2209191 | 2020-01-20 13:45:47 +0100 | [diff] [blame] | 75 | # package options |
| 76 | find_program(DEB_BUILDER NAMES debuild) |
| 77 | find_program(RPM_BUILDER NAMES rpmbuild) |
| 78 | |
| 79 | if(NOT DEFINED ENV{TRAVIS_BRANCH}) |
PavolVican | 384786e | 2017-07-12 15:31:20 +0200 | [diff] [blame] | 80 | execute_process(COMMAND "git" "rev-parse" "--abbrev-ref" "HEAD" |
| 81 | OUTPUT_VARIABLE GIT_BRANCH |
| 82 | OUTPUT_STRIP_TRAILING_WHITESPACE |
| 83 | ERROR_QUIET |
Claus Klein | 2209191 | 2020-01-20 13:45:47 +0100 | [diff] [blame] | 84 | ) |
| 85 | if(NOT GIT_BRANCH) |
PavolVican | 384786e | 2017-07-12 15:31:20 +0200 | [diff] [blame] | 86 | set(ENV{TRAVIS_BRANCH} "master") |
| 87 | else() |
Claus Klein | 2209191 | 2020-01-20 13:45:47 +0100 | [diff] [blame] | 88 | if(GIT_BRANCH MATCHES "master|devel") |
PavolVican | 384786e | 2017-07-12 15:31:20 +0200 | [diff] [blame] | 89 | set(ENV{TRAVIS_BRANCH} ${GIT_BRANCH}) |
| 90 | else() |
| 91 | set(ENV{TRAVIS_BRANCH} "master") |
| 92 | endif() |
| 93 | endif() |
Claus Klein | 2209191 | 2020-01-20 13:45:47 +0100 | [diff] [blame] | 94 | |
| 95 | set(GIT_BRANCH $ENV{TRAVIS_BRANCH}) # NOTE: used for configure_file too |
PavolVican | 384786e | 2017-07-12 15:31:20 +0200 | [diff] [blame] | 96 | endif() |
| 97 | |
Claus Klein | 2209191 | 2020-01-20 13:45:47 +0100 | [diff] [blame] | 98 | if(GIT_BRANCH STREQUAL master) |
PavolVican | 384786e | 2017-07-12 15:31:20 +0200 | [diff] [blame] | 99 | set(PACKAGE_NAME "libnetconf2") |
| 100 | set(BRANCH "master") |
| 101 | set(BUILD_TYPE "Package") |
| 102 | set(CONFLICT_PACKAGE_NAME "libnetconf2-experimental") |
Michal Vasko | 34a6d74 | 2019-12-10 15:25:07 +0100 | [diff] [blame] | 103 | set(PACKAGE_PART_NAME "") |
Claus Klein | 2209191 | 2020-01-20 13:45:47 +0100 | [diff] [blame] | 104 | else() |
PavolVican | 384786e | 2017-07-12 15:31:20 +0200 | [diff] [blame] | 105 | set(PACKAGE_NAME "libnetconf2-experimental") |
| 106 | set(BRANCH "devel") |
Claus Klein | 2209191 | 2020-01-20 13:45:47 +0100 | [diff] [blame] | 107 | set(BUILD_TYPE "Debug") |
PavolVican | 384786e | 2017-07-12 15:31:20 +0200 | [diff] [blame] | 108 | set(CONFLICT_PACKAGE_NAME "libnetconf2") |
Michal Vasko | 34a6d74 | 2019-12-10 15:25:07 +0100 | [diff] [blame] | 109 | set(PACKAGE_PART_NAME "-experimental") |
PavolVican | 384786e | 2017-07-12 15:31:20 +0200 | [diff] [blame] | 110 | endif() |
| 111 | # change version in config files |
| 112 | configure_file(${PROJECT_SOURCE_DIR}/packages/libnetconf2.spec.in ${PROJECT_BINARY_DIR}/build-packages/libnetconf2.spec) |
| 113 | configure_file(${PROJECT_SOURCE_DIR}/packages/libnetconf2.dsc.in ${PROJECT_BINARY_DIR}/build-packages/libnetconf2.dsc) |
| 114 | configure_file(${PROJECT_SOURCE_DIR}/packages/debian.control.in ${PROJECT_BINARY_DIR}/build-packages/debian.control @ONLY) |
| 115 | configure_file(${PROJECT_SOURCE_DIR}/packages/debian.rules.in ${PROJECT_BINARY_DIR}/build-packages/debian.rules) |
Michal Vasko | 34a6d74 | 2019-12-10 15:25:07 +0100 | [diff] [blame] | 116 | configure_file(${PROJECT_SOURCE_DIR}/packages/debian.libnetconf2-dev.install |
| 117 | ${PROJECT_BINARY_DIR}/build-packages/debian.libnetconf2${PACKAGE_PART_NAME}-dev.install COPYONLY) |
| 118 | configure_file(${PROJECT_SOURCE_DIR}/packages/debian.libnetconf2.install |
| 119 | ${PROJECT_BINARY_DIR}/build-packages/debian.libnetconf2${PACKAGE_PART_NAME}.install COPYONLY) |
| 120 | configure_file(${PROJECT_SOURCE_DIR}/packages/debian.python3-netconf2.install |
| 121 | ${PROJECT_BINARY_DIR}/build-packages/debian.python3-netconf2${PACKAGE_PART_NAME}.install COPYONLY) |
PavolVican | 384786e | 2017-07-12 15:31:20 +0200 | [diff] [blame] | 122 | |
Claus Klein | 2209191 | 2020-01-20 13:45:47 +0100 | [diff] [blame] | 123 | if(NOT DEB_BUILDER) |
PavolVican | 384786e | 2017-07-12 15:31:20 +0200 | [diff] [blame] | 124 | message(WARNING "Missing tools (devscripts, debhelper package) for building deb package.\nYou won't be able to generate deb package from source code.\nCompiling libnetconf2 should still works fine.") |
Claus Klein | 2209191 | 2020-01-20 13:45:47 +0100 | [diff] [blame] | 125 | else() |
PavolVican | 384786e | 2017-07-12 15:31:20 +0200 | [diff] [blame] | 126 | # target for local build deb package |
| 127 | add_custom_target(build-deb |
| 128 | WORKING_DIRECTORY ${PROJECT_BINARY_DIR} |
| 129 | COMMAND build-packages/local-deb.sh |
| 130 | ) |
| 131 | configure_file(${PROJECT_SOURCE_DIR}/packages/local-deb.sh.in ${PROJECT_BINARY_DIR}/build-packages/local-deb.sh @ONLY) |
| 132 | endif() |
| 133 | |
Claus Klein | 2209191 | 2020-01-20 13:45:47 +0100 | [diff] [blame] | 134 | if(NOT RPM_BUILDER) |
Michal Vasko | 08d5cde | 2019-07-10 14:34:55 +0200 | [diff] [blame] | 135 | message(WARNING "Missing tools (rpm package) for building rpm package. \nYou won't be able to generate rpm package from source code.\nCompiling libnetconf2 should still work fine.") |
Claus Klein | 2209191 | 2020-01-20 13:45:47 +0100 | [diff] [blame] | 136 | else() |
PavolVican | 384786e | 2017-07-12 15:31:20 +0200 | [diff] [blame] | 137 | # target for local build rpm package |
| 138 | string(REPLACE ${PROJECT_SOURCE_DIR} "." EXCLUDE_BUILD_DIR ${PROJECT_BINARY_DIR}) |
| 139 | add_custom_target(build-rpm |
| 140 | WORKING_DIRECTORY ${PROJECT_BINARY_DIR} |
| 141 | COMMAND build-packages/local-rpm.sh |
| 142 | ) |
| 143 | configure_file(${PROJECT_SOURCE_DIR}/packages/local-rpm.sh.in ${PROJECT_BINARY_DIR}/build-packages/local-rpm.sh @ONLY) |
| 144 | endif() |
| 145 | |
Jan Kundrát | cf15d6c | 2017-10-26 18:07:56 +0200 | [diff] [blame] | 146 | include_directories(${PROJECT_BINARY_DIR}/src) |
| 147 | |
Radek Krejci | 4f2d40d | 2015-10-08 12:55:01 +0200 | [diff] [blame] | 148 | # source files |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 149 | set(libsrc |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 150 | src/io.c |
| 151 | src/log.c |
| 152 | src/messages_client.c |
| 153 | src/messages_server.c |
| 154 | src/session.c |
| 155 | src/session_client.c |
| 156 | src/session_server.c |
| 157 | src/time.c) |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 158 | |
Michal Vasko | fb2fb76 | 2015-10-27 11:44:32 +0100 | [diff] [blame] | 159 | if(ENABLE_SSH) |
Claus Klein | 2209191 | 2020-01-20 13:45:47 +0100 | [diff] [blame] | 160 | list(APPEND libsrc |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 161 | src/session_client_ssh.c |
| 162 | src/session_server_ssh.c) |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 163 | set(SSH_MACRO "#ifndef NC_ENABLED_SSH\n#define NC_ENABLED_SSH\n#endif") |
Radek Krejci | ac6d347 | 2015-10-22 15:47:18 +0200 | [diff] [blame] | 164 | endif() |
| 165 | |
Radek Krejci | 9f03b48 | 2015-10-22 16:02:10 +0200 | [diff] [blame] | 166 | if(ENABLE_TLS) |
Claus Klein | 2209191 | 2020-01-20 13:45:47 +0100 | [diff] [blame] | 167 | list(APPEND libsrc |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 168 | src/session_client_tls.c |
| 169 | src/session_server_tls.c) |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 170 | set(TLS_MACRO "#ifndef NC_ENABLED_TLS\n#define NC_ENABLED_TLS\n#endif") |
Radek Krejci | 9f03b48 | 2015-10-22 16:02:10 +0200 | [diff] [blame] | 171 | endif() |
| 172 | |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 173 | set(headers |
Claus Klein | 2209191 | 2020-01-20 13:45:47 +0100 | [diff] [blame] | 174 | ${PROJECT_BINARY_DIR}/src/config.h |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 175 | src/log.h |
| 176 | src/netconf.h |
| 177 | src/session.h |
| 178 | src/messages_client.h |
| 179 | src/messages_server.h |
| 180 | src/session_client.h |
Michal Vasko | 45f298f | 2016-01-29 10:26:26 +0100 | [diff] [blame] | 181 | src/session_client_ch.h |
| 182 | src/session_server.h |
| 183 | src/session_server_ch.h) |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 184 | |
Michal Vasko | 9e8ac26 | 2020-04-07 13:06:45 +0200 | [diff] [blame] | 185 | # use compat |
| 186 | use_compat() |
| 187 | |
Claus Klein | 2209191 | 2020-01-20 13:45:47 +0100 | [diff] [blame] | 188 | # netconf2 target |
Michal Vasko | a6e826a | 2020-04-08 08:12:29 +0200 | [diff] [blame] | 189 | add_library(netconf2 SHARED ${libsrc} ${headers} $<TARGET_OBJECTS:compat>) |
Michal Vasko | d853655 | 2020-04-21 14:41:16 +0200 | [diff] [blame] | 190 | set_target_properties(netconf2 PROPERTIES VERSION ${LIBNETCONF2_SOVERSION_FULL} SOVERSION ${LIBNETCONF2_SOVERSION}) |
Radek Krejci | 4f2d40d | 2015-10-08 12:55:01 +0200 | [diff] [blame] | 191 | |
Claus Klein | 2209191 | 2020-01-20 13:45:47 +0100 | [diff] [blame] | 192 | if((CMAKE_BUILD_TYPE STREQUAL Debug) OR (CMAKE_BUILD_TYPE STREQUAL Package)) |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 193 | option(ENABLE_BUILD_TESTS "Build tests" ON) |
| 194 | option(ENABLE_VALGRIND_TESTS "Build tests with valgrind" ON) |
Radek Krejci | ce24ab8 | 2015-10-08 15:37:02 +0200 | [diff] [blame] | 195 | else() |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 196 | option(ENABLE_BUILD_TESTS "Build tests" OFF) |
| 197 | option(ENABLE_VALGRIND_TESTS "Build tests with valgrind" OFF) |
Radek Krejci | ce24ab8 | 2015-10-08 15:37:02 +0200 | [diff] [blame] | 198 | endif() |
| 199 | |
Radek Krejci | 32898d5 | 2016-07-14 17:37:02 +0200 | [diff] [blame] | 200 | # dependencies - pthread |
Michal Vasko | 73ed967 | 2016-01-29 13:15:15 +0100 | [diff] [blame] | 201 | set(CMAKE_THREAD_PREFER_PTHREAD TRUE) |
| 202 | find_package(Threads REQUIRED) |
| 203 | target_link_libraries(netconf2 ${CMAKE_THREAD_LIBS_INIT}) |
| 204 | |
Radek Krejci | 2847292 | 2016-07-15 11:51:16 +0200 | [diff] [blame] | 205 | # check availability for some pthread functions |
Radek Krejci | 32898d5 | 2016-07-14 17:37:02 +0200 | [diff] [blame] | 206 | set(CMAKE_REQUIRED_LIBRARIES pthread) |
Michal Vasko | 7ae909a | 2018-11-09 09:51:42 +0100 | [diff] [blame] | 207 | check_include_file(stdatomic.h HAVE_STDATOMIC) |
Radek Krejci | 2847292 | 2016-07-15 11:51:16 +0200 | [diff] [blame] | 208 | check_function_exists(pthread_mutex_timedlock HAVE_PTHREAD_MUTEX_TIMEDLOCK) |
Rosen Penev | ef2f3ac | 2019-07-15 18:15:28 -0700 | [diff] [blame] | 209 | check_function_exists(pthread_rwlockattr_setkind_np HAVE_PTHREAD_RWLOCKATTR_SETKIND_NP) |
Radek Krejci | 32898d5 | 2016-07-14 17:37:02 +0200 | [diff] [blame] | 210 | |
Radek Krejci | 4f2d40d | 2015-10-08 12:55:01 +0200 | [diff] [blame] | 211 | # dependencies - openssl |
Radek Krejci | 5c69cdf | 2017-05-26 16:29:29 +0200 | [diff] [blame] | 212 | if(ENABLE_TLS OR ENABLE_DNSSEC OR ENABLE_SSH) |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 213 | find_package(OpenSSL REQUIRED) |
Claus Klein | 2209191 | 2020-01-20 13:45:47 +0100 | [diff] [blame] | 214 | if(ENABLE_TLS) |
| 215 | message(STATUS "OPENSSL found, required for TLS") |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 216 | set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DNC_ENABLED_TLS") |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 217 | endif() |
Claus Klein | 2209191 | 2020-01-20 13:45:47 +0100 | [diff] [blame] | 218 | |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 219 | target_link_libraries(netconf2 ${OPENSSL_LIBRARIES}) |
| 220 | include_directories(${OPENSSL_INCLUDE_DIR}) |
| 221 | endif() |
| 222 | |
Michal Vasko | 474d373 | 2017-09-27 13:57:00 +0200 | [diff] [blame] | 223 | # dependencies - libssh |
| 224 | if(ENABLE_SSH) |
Michal Vasko | 71514b3 | 2020-04-07 13:36:51 +0200 | [diff] [blame] | 225 | find_package(LibSSH 0.7.0 REQUIRED) |
Michal Vasko | 474d373 | 2017-09-27 13:57:00 +0200 | [diff] [blame] | 226 | set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DNC_ENABLED_SSH") |
Michal Vasko | 71514b3 | 2020-04-07 13:36:51 +0200 | [diff] [blame] | 227 | message(STATUS "LibSSH version ${LibSSH_VERSION} found") |
Claus Klein | 2209191 | 2020-01-20 13:45:47 +0100 | [diff] [blame] | 228 | |
Michal Vasko | 6306736 | 2020-04-22 15:56:02 +0200 | [diff] [blame^] | 229 | if(LibSSH_VERSION VERSION_EQUAL 0.9.3 OR LibSSH_VERSION VERSION_EQUAL 0.9.4) |
| 230 | message(FATAL_ERROR "LibSSH ${LibSSH_VERSION} includes regression bugs and libnetconf2 will NOT work properly, try to use another version") |
Michal Vasko | 899760c | 2020-01-03 10:13:11 +0100 | [diff] [blame] | 231 | endif() |
Claus Klein | 2209191 | 2020-01-20 13:45:47 +0100 | [diff] [blame] | 232 | |
Michal Vasko | 71514b3 | 2020-04-07 13:36:51 +0200 | [diff] [blame] | 233 | if(LibSSH_VERSION VERSION_LESS 0.8.0) |
| 234 | target_link_libraries(netconf2 "-L${LIBSSH_LIBRARY_DIR}" -lssh -lssh_threads) |
| 235 | list(APPEND CMAKE_REQUIRED_FLAGS "-L${LIBSSH_LIBRARY_DIR}") |
| 236 | list(APPEND CMAKE_REQUIRED_LIBRARIES ssh ssh_threads) |
David Sedlák | b3914fe | 2018-08-20 15:03:25 +0200 | [diff] [blame] | 237 | else() |
Michal Vasko | 71514b3 | 2020-04-07 13:36:51 +0200 | [diff] [blame] | 238 | target_link_libraries(netconf2 ${LIBSSH_LIBRARIES}) |
| 239 | list(APPEND CMAKE_REQUIRED_LIBRARIES ${LIBSSH_LIBRARIES}) |
David Sedlák | b3914fe | 2018-08-20 15:03:25 +0200 | [diff] [blame] | 240 | endif() |
Michal Vasko | 474d373 | 2017-09-27 13:57:00 +0200 | [diff] [blame] | 241 | include_directories(${LIBSSH_INCLUDE_DIRS}) |
Michal Vasko | 71514b3 | 2020-04-07 13:36:51 +0200 | [diff] [blame] | 242 | |
| 243 | # crypt |
apropp-molex | 4e903c3 | 2020-04-20 03:06:58 -0400 | [diff] [blame] | 244 | if(NOT ${CMAKE_SYSTEM_NAME} MATCHES "QNX") |
| 245 | target_link_libraries(netconf2 -lcrypt) |
| 246 | list(APPEND CMAKE_REQUIRED_LIBRARIES crypt) |
| 247 | else() |
| 248 | target_link_libraries(netconf2 -llogin) |
| 249 | list(APPEND CMAKE_REQUIRED_LIBRARIES login) |
| 250 | endif() |
Michal Vasko | 474d373 | 2017-09-27 13:57:00 +0200 | [diff] [blame] | 251 | endif() |
| 252 | |
Michal Vasko | 73ed967 | 2016-01-29 13:15:15 +0100 | [diff] [blame] | 253 | # dependencies - libval |
Claus Klein | 2209191 | 2020-01-20 13:45:47 +0100 | [diff] [blame] | 254 | if(ENABLE_DNSSEC) |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 255 | find_package(LibVAL REQUIRED) |
| 256 | set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DENABLE_DNSSEC") |
| 257 | target_link_libraries(netconf2 ${LIBVAL_LIBRARIES}) |
| 258 | include_directories(${LIBVAL_INCLUDE_DIRS}) |
Radek Krejci | 4f2d40d | 2015-10-08 12:55:01 +0200 | [diff] [blame] | 259 | endif() |
| 260 | |
| 261 | # dependencies - libyang |
| 262 | find_package(LibYANG REQUIRED) |
| 263 | target_link_libraries(netconf2 ${LIBYANG_LIBRARIES}) |
| 264 | include_directories(${LIBYANG_INCLUDE_DIRS}) |
| 265 | |
apropp-molex | 4e903c3 | 2020-04-20 03:06:58 -0400 | [diff] [blame] | 266 | # header file compatibility - shadow.h and crypt.h |
| 267 | check_include_file("shadow.h" HAVE_SHADOW) |
| 268 | check_include_file("crypt.h" HAVE_CRYPT) |
| 269 | |
| 270 | # function compatibility - getpeereid on QNX |
| 271 | if(${CMAKE_SYSTEM_NAME} MATCHES "QNX") |
| 272 | target_link_libraries(netconf2 -lsocket) |
| 273 | list(APPEND CMAKE_REQUIRED_LIBRARIES socket) |
| 274 | list(REMOVE_ITEM CMAKE_REQUIRED_LIBRARIES pthread) |
| 275 | list(APPEND CMAKE_REQUIRED_DEFINITIONS -D_QNX_SOURCE) |
| 276 | check_symbol_exists(getpeereid "sys/types.h;unistd.h" HAVE_GETPEEREID) |
| 277 | list(REMOVE_ITEM CMAKE_REQUIRED_DEFINITIONS -D_QNX_SOURCE) |
| 278 | endif() |
| 279 | |
Michal Vasko | 51cda3c | 2016-01-29 14:41:26 +0100 | [diff] [blame] | 280 | # generate doxygen documentation for libnetconf2 API |
| 281 | find_package(Doxygen) |
| 282 | if(DOXYGEN_FOUND) |
| 283 | set(DOXYGEN_SKIP_DOT TRUE) |
| 284 | add_custom_target(doc |
| 285 | COMMAND ${DOXYGEN_EXECUTABLE} ${CMAKE_BINARY_DIR}/Doxyfile |
| 286 | WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}) |
| 287 | configure_file(Doxyfile.in Doxyfile) |
| 288 | endif() |
| 289 | |
Radek Krejci | c61f0b4 | 2017-06-07 13:21:41 +0200 | [diff] [blame] | 290 | # Python bindings |
| 291 | if(ENABLE_PYTHON) |
| 292 | add_subdirectory(python) |
Claus Klein | 2209191 | 2020-01-20 13:45:47 +0100 | [diff] [blame] | 293 | endif() |
Radek Krejci | c61f0b4 | 2017-06-07 13:21:41 +0200 | [diff] [blame] | 294 | |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 295 | # install library |
Jan Kundrát | b78cdfc | 2016-11-04 17:11:24 +0100 | [diff] [blame] | 296 | install(TARGETS netconf2 DESTINATION ${CMAKE_INSTALL_LIBDIR}) |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 297 | |
| 298 | # install headers |
Jan Kundrát | b78cdfc | 2016-11-04 17:11:24 +0100 | [diff] [blame] | 299 | install(FILES ${CMAKE_CURRENT_BINARY_DIR}/nc_client.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}) |
| 300 | install(FILES ${CMAKE_CURRENT_BINARY_DIR}/nc_server.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}) |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 301 | install(FILES ${headers} DESTINATION ${INCLUDE_INSTALL_SUBDIR}) |
| 302 | |
Radek Krejci | 14b1403 | 2015-10-21 15:19:43 +0200 | [diff] [blame] | 303 | # install schemas |
| 304 | install( |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 305 | CODE "file(GLOB yin_schemas \"${CMAKE_SOURCE_DIR}/schemas/*.yin\")" |
Michal Vasko | ed6e0d3 | 2016-02-24 13:28:58 +0100 | [diff] [blame] | 306 | CODE "file(INSTALL \${yin_schemas} DESTINATION ${CMAKE_INSTALL_PREFIX}/${DATA_INSTALL_DIR})" |
Radek Krejci | 14b1403 | 2015-10-21 15:19:43 +0200 | [diff] [blame] | 307 | ) |
| 308 | |
Michal Vasko | 6779d18 | 2016-02-17 14:36:36 +0100 | [diff] [blame] | 309 | # install pkg-config file |
| 310 | find_package(PkgConfig) |
| 311 | if(PKG_CONFIG_FOUND) |
| 312 | configure_file("libnetconf2.pc.in" "libnetconf2.pc" @ONLY) |
Jan Kundrát | b78cdfc | 2016-11-04 17:11:24 +0100 | [diff] [blame] | 313 | install(FILES "${CMAKE_CURRENT_BINARY_DIR}/libnetconf2.pc" DESTINATION "${CMAKE_INSTALL_LIBDIR}/pkgconfig") |
Michal Vasko | 6779d18 | 2016-02-17 14:36:36 +0100 | [diff] [blame] | 314 | # check that pkg-config includes the used path |
| 315 | execute_process(COMMAND ${PKG_CONFIG_EXECUTABLE} --variable pc_path pkg-config RESULT_VARIABLE RETURN OUTPUT_VARIABLE PC_PATH ERROR_QUIET) |
| 316 | if(RETURN EQUAL 0) |
Jan Kundrát | b78cdfc | 2016-11-04 17:11:24 +0100 | [diff] [blame] | 317 | string(REGEX MATCH "${CMAKE_INSTALL_LIBDIR}/pkgconfig" SUBSTR "${PC_PATH}") |
Michal Vasko | 6779d18 | 2016-02-17 14:36:36 +0100 | [diff] [blame] | 318 | string(LENGTH "${SUBSTR}" SUBSTR_LEN) |
| 319 | if(SUBSTR_LEN EQUAL 0) |
Jan Kundrát | b78cdfc | 2016-11-04 17:11:24 +0100 | [diff] [blame] | 320 | message(WARNING "pkg-config will not detect the new package after installation, adjust PKG_CONFIG_PATH using \"export PKG_CONFIG_PATH=\${PKG_CONFIG_PATH}:${CMAKE_INSTALL_LIBDIR}/pkgconfig\".") |
Michal Vasko | 6779d18 | 2016-02-17 14:36:36 +0100 | [diff] [blame] | 321 | endif() |
| 322 | endif() |
| 323 | endif() |
| 324 | |
Radek Krejci | ce24ab8 | 2015-10-08 15:37:02 +0200 | [diff] [blame] | 325 | if(ENABLE_VALGRIND_TESTS) |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 326 | set(ENABLE_BUILD_TESTS ON) |
Radek Krejci | ce24ab8 | 2015-10-08 15:37:02 +0200 | [diff] [blame] | 327 | endif() |
| 328 | |
| 329 | if(ENABLE_BUILD_TESTS) |
Radek Krejci | eaa0672 | 2016-02-26 14:27:32 +0100 | [diff] [blame] | 330 | find_package(CMocka 1.0.0) |
| 331 | if(CMOCKA_FOUND) |
| 332 | enable_testing() |
| 333 | add_subdirectory(tests) |
Claus Klein | 2209191 | 2020-01-20 13:45:47 +0100 | [diff] [blame] | 334 | endif() |
Radek Krejci | ce24ab8 | 2015-10-08 15:37:02 +0200 | [diff] [blame] | 335 | endif() |
| 336 | |
Jan Kundrát | cf15d6c | 2017-10-26 18:07:56 +0200 | [diff] [blame] | 337 | configure_file("${PROJECT_SOURCE_DIR}/src/config.h.in" "${PROJECT_BINARY_DIR}/src/config.h" ESCAPE_QUOTES @ONLY) |
Michal Vasko | 1128e11 | 2015-10-26 15:34:24 +0100 | [diff] [blame] | 338 | configure_file(nc_client.h.in nc_client.h) |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 339 | configure_file(nc_server.h.in nc_server.h) |
Radek Krejci | 14b1403 | 2015-10-21 15:19:43 +0200 | [diff] [blame] | 340 | |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 341 | # clean cmake cache |
| 342 | add_custom_target(cleancache |
| 343 | COMMAND make clean |
| 344 | COMMAND find . -iname '*cmake*' -not -name CMakeLists.txt -exec rm -rf {} + |
| 345 | COMMAND rm -rf Makefile Doxyfile |
| 346 | WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}) |
Bi-Ruei, Chiu | f5faf83 | 2019-09-21 20:15:59 +0800 | [diff] [blame] | 347 | |
| 348 | # uninstall |
| 349 | add_custom_target(uninstall "${CMAKE_COMMAND}" -P "${CMAKE_MODULE_PATH}/uninstall.cmake") |