Michal Vasko | 623d59e | 2021-01-13 14:11:48 +0100 | [diff] [blame] | 1 | cmake_minimum_required(VERSION 2.8.12) |
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) |
Michal Vasko | 4cb2d72 | 2020-04-23 13:49:16 +0200 | [diff] [blame] | 4 | set(LIBNETCONF2_DESC "NETCONF library in C providing API for both clients and servers.") |
Claus Klein | 2209191 | 2020-01-20 13:45:47 +0100 | [diff] [blame] | 5 | |
Michal Vasko | 9e8ac26 | 2020-04-07 13:06:45 +0200 | [diff] [blame] | 6 | # include custom Modules |
| 7 | list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/CMakeModules/") |
| 8 | |
Jan Kundrát | b78cdfc | 2016-11-04 17:11:24 +0100 | [diff] [blame] | 9 | include(GNUInstallDirs) |
Michal Vasko | 9aa3c6a | 2018-11-12 08:50:10 +0100 | [diff] [blame] | 10 | include(CheckFunctionExists) |
Michal Vasko | 32af614 | 2019-01-23 09:30:42 +0100 | [diff] [blame] | 11 | include(CheckCSourceCompiles) |
Michal Vasko | 352c390 | 2018-11-12 09:16:59 +0100 | [diff] [blame] | 12 | include(CheckIncludeFile) |
Michal Vasko | 9e8ac26 | 2020-04-07 13:06:45 +0200 | [diff] [blame] | 13 | include(UseCompat) |
Claus Klein | 2209191 | 2020-01-20 13:45:47 +0100 | [diff] [blame] | 14 | |
Michal Vasko | d612369 | 2019-07-16 16:04:16 +0200 | [diff] [blame] | 15 | if(POLICY CMP0075) |
| 16 | cmake_policy(SET CMP0075 NEW) |
| 17 | endif() |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 18 | |
Michal Vasko | 6779d18 | 2016-02-17 14:36:36 +0100 | [diff] [blame] | 19 | set(LIBNETCONF2_DESCRIPTION "NETCONF server and client library in C.") |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 20 | |
| 21 | # check the supported platform |
| 22 | if(NOT UNIX) |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 23 | message(FATAL_ERROR "Only *nix like systems are supported.") |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 24 | endif() |
| 25 | |
Michal Vasko | 63b52fc | 2018-02-16 10:08:17 +0100 | [diff] [blame] | 26 | # osx specific |
| 27 | set(CMAKE_MACOSX_RPATH TRUE) |
| 28 | |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 29 | # set default build type if not specified by user |
| 30 | if(NOT CMAKE_BUILD_TYPE) |
Claus Klein | 2209191 | 2020-01-20 13:45:47 +0100 | [diff] [blame] | 31 | set(CMAKE_BUILD_TYPE Debug) |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 32 | endif() |
| 33 | |
Michal Vasko | 89fff91 | 2020-05-27 08:29:11 +0200 | [diff] [blame] | 34 | add_compile_options(-Wall -Wextra -fvisibility=hidden -std=gnu99) |
PavolVican | 384786e | 2017-07-12 15:31:20 +0200 | [diff] [blame] | 35 | set(CMAKE_C_FLAGS_PACKAGE "-g -O2 -DNDEBUG") |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 36 | |
Michal Vasko | 08d5cde | 2019-07-10 14:34:55 +0200 | [diff] [blame] | 37 | # Version of the project |
| 38 | # Generic version of not only the library. Major version is reserved for really big changes of the project, |
| 39 | # minor version changes with added functionality (new tool, functionality of the tool or library, ...) and |
| 40 | # micro version is changed with a set of small changes or bugfixes anywhere in the project. |
| 41 | set(LIBNETCONF2_MAJOR_VERSION 1) |
Michal Vasko | 8afb2ed | 2019-11-05 12:07:34 +0100 | [diff] [blame] | 42 | set(LIBNETCONF2_MINOR_VERSION 1) |
Michal Vasko | bc33312 | 2021-02-04 15:36:39 +0100 | [diff] [blame^] | 43 | set(LIBNETCONF2_MICRO_VERSION 37) |
Radek Krejci | 4f2d40d | 2015-10-08 12:55:01 +0200 | [diff] [blame] | 44 | set(LIBNETCONF2_VERSION ${LIBNETCONF2_MAJOR_VERSION}.${LIBNETCONF2_MINOR_VERSION}.${LIBNETCONF2_MICRO_VERSION}) |
Michal Vasko | 08d5cde | 2019-07-10 14:34:55 +0200 | [diff] [blame] | 45 | |
| 46 | # Version of the library |
| 47 | # Major version is changed with every backward non-compatible API/ABI change in libyang, minor version changes |
| 48 | # with backward compatible change and micro version is connected with any internal change of the library. |
| 49 | set(LIBNETCONF2_MAJOR_SOVERSION 1) |
Michal Vasko | ee9d740 | 2020-04-16 09:03:59 +0200 | [diff] [blame] | 50 | set(LIBNETCONF2_MINOR_SOVERSION 3) |
Michal Vasko | a52be6f | 2021-02-04 15:36:29 +0100 | [diff] [blame] | 51 | set(LIBNETCONF2_MICRO_SOVERSION 16) |
Michal Vasko | 08d5cde | 2019-07-10 14:34:55 +0200 | [diff] [blame] | 52 | set(LIBNETCONF2_SOVERSION_FULL ${LIBNETCONF2_MAJOR_SOVERSION}.${LIBNETCONF2_MINOR_SOVERSION}.${LIBNETCONF2_MICRO_SOVERSION}) |
| 53 | set(LIBNETCONF2_SOVERSION ${LIBNETCONF2_MAJOR_SOVERSION}) |
Radek Krejci | 4f2d40d | 2015-10-08 12:55:01 +0200 | [diff] [blame] | 54 | |
Michal Vasko | 819598b | 2020-07-29 10:05:11 +0200 | [diff] [blame] | 55 | # libyang SO version required |
| 56 | set(LIBYANG_DEP_SOVERSION_MAJOR 1) |
| 57 | |
Radek Krejci | ac6d347 | 2015-10-22 15:47:18 +0200 | [diff] [blame] | 58 | # build options |
Michal Vasko | fb2fb76 | 2015-10-27 11:44:32 +0100 | [diff] [blame] | 59 | option(ENABLE_SSH "Enable NETCONF over SSH support (via libssh)" ON) |
Michal Vasko | 061dc80 | 2016-02-29 10:15:28 +0100 | [diff] [blame] | 60 | option(ENABLE_TLS "Enable NETCONF over TLS support (via OpenSSL)" ON) |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 61 | 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] | 62 | option(ENABLE_PYTHON "Include bindings for Python 3" OFF) |
Michal Vasko | f471fa0 | 2017-02-15 10:48:12 +0100 | [diff] [blame] | 63 | set(READ_INACTIVE_TIMEOUT 20 CACHE STRING "Maximum number of seconds waiting for new data once some data have arrived") |
| 64 | set(READ_ACTIVE_TIMEOUT 300 CACHE STRING "Maximum number of seconds for receiving a full message") |
| 65 | 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] | 66 | set(TIMEOUT_STEP 100 CACHE STRING "Number of microseconds tasks are repeated until timeout elapses") |
Michal Vasko | 5a44647 | 2020-05-06 12:43:42 +0200 | [diff] [blame] | 67 | set(YANG_MODULE_DIR "${CMAKE_INSTALL_PREFIX}/share/yang/modules" CACHE STRING "Directory with common YANG modules") |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 68 | |
| 69 | if(ENABLE_DNSSEC AND NOT ENABLE_SSH) |
| 70 | message(WARNING "DNSSEC SSHFP retrieval cannot be used without SSH support.") |
| 71 | set(ENABLE_DNSSEC OFF) |
| 72 | endif() |
Radek Krejci | ac6d347 | 2015-10-22 15:47:18 +0200 | [diff] [blame] | 73 | |
Jan Kundrát | cf15d6c | 2017-10-26 18:07:56 +0200 | [diff] [blame] | 74 | include_directories(${PROJECT_BINARY_DIR}/src) |
| 75 | |
Radek Krejci | 4f2d40d | 2015-10-08 12:55:01 +0200 | [diff] [blame] | 76 | # source files |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 77 | set(libsrc |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 78 | src/io.c |
| 79 | src/log.c |
| 80 | src/messages_client.c |
| 81 | src/messages_server.c |
| 82 | src/session.c |
| 83 | src/session_client.c |
| 84 | src/session_server.c |
| 85 | src/time.c) |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 86 | |
Michal Vasko | fb2fb76 | 2015-10-27 11:44:32 +0100 | [diff] [blame] | 87 | if(ENABLE_SSH) |
Claus Klein | 2209191 | 2020-01-20 13:45:47 +0100 | [diff] [blame] | 88 | list(APPEND libsrc |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 89 | src/session_client_ssh.c |
| 90 | src/session_server_ssh.c) |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 91 | 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] | 92 | endif() |
| 93 | |
Radek Krejci | 9f03b48 | 2015-10-22 16:02:10 +0200 | [diff] [blame] | 94 | if(ENABLE_TLS) |
Claus Klein | 2209191 | 2020-01-20 13:45:47 +0100 | [diff] [blame] | 95 | list(APPEND libsrc |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 96 | src/session_client_tls.c |
| 97 | src/session_server_tls.c) |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 98 | 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] | 99 | endif() |
| 100 | |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 101 | set(headers |
Claus Klein | 2209191 | 2020-01-20 13:45:47 +0100 | [diff] [blame] | 102 | ${PROJECT_BINARY_DIR}/src/config.h |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 103 | src/log.h |
| 104 | src/netconf.h |
| 105 | src/session.h |
| 106 | src/messages_client.h |
| 107 | src/messages_server.h |
| 108 | src/session_client.h |
Michal Vasko | 45f298f | 2016-01-29 10:26:26 +0100 | [diff] [blame] | 109 | src/session_client_ch.h |
| 110 | src/session_server.h |
| 111 | src/session_server_ch.h) |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 112 | |
Michal Vasko | 9e8ac26 | 2020-04-07 13:06:45 +0200 | [diff] [blame] | 113 | # use compat |
| 114 | use_compat() |
| 115 | |
Claus Klein | 2209191 | 2020-01-20 13:45:47 +0100 | [diff] [blame] | 116 | # netconf2 target |
Michal Vasko | a6e826a | 2020-04-08 08:12:29 +0200 | [diff] [blame] | 117 | add_library(netconf2 SHARED ${libsrc} ${headers} $<TARGET_OBJECTS:compat>) |
Michal Vasko | d853655 | 2020-04-21 14:41:16 +0200 | [diff] [blame] | 118 | set_target_properties(netconf2 PROPERTIES VERSION ${LIBNETCONF2_SOVERSION_FULL} SOVERSION ${LIBNETCONF2_SOVERSION}) |
Radek Krejci | 4f2d40d | 2015-10-08 12:55:01 +0200 | [diff] [blame] | 119 | |
Claus Klein | 2209191 | 2020-01-20 13:45:47 +0100 | [diff] [blame] | 120 | if((CMAKE_BUILD_TYPE STREQUAL Debug) OR (CMAKE_BUILD_TYPE STREQUAL Package)) |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 121 | option(ENABLE_BUILD_TESTS "Build tests" ON) |
| 122 | option(ENABLE_VALGRIND_TESTS "Build tests with valgrind" ON) |
Radek Krejci | ce24ab8 | 2015-10-08 15:37:02 +0200 | [diff] [blame] | 123 | else() |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 124 | option(ENABLE_BUILD_TESTS "Build tests" OFF) |
| 125 | option(ENABLE_VALGRIND_TESTS "Build tests with valgrind" OFF) |
Radek Krejci | ce24ab8 | 2015-10-08 15:37:02 +0200 | [diff] [blame] | 126 | endif() |
Fred Gan | 5eda9cb | 2020-12-11 16:32:08 +0800 | [diff] [blame] | 127 | option(ENABLE_COVERAGE "Build code coverage report from tests" OFF) |
| 128 | |
| 129 | if(ENABLE_COVERAGE) |
| 130 | find_program(PATH_GCOV NAMES gcov) |
| 131 | if(NOT PATH_GCOV) |
| 132 | message(WARNING "'gcov' executable not found! Disabling building code coverage report.") |
| 133 | set(ENABLE_COVERAGE OFF) |
| 134 | endif() |
| 135 | |
| 136 | find_program(PATH_LCOV NAMES lcov) |
| 137 | if(NOT PATH_LCOV) |
| 138 | message(WARNING "'lcov' executable not found! Disabling building code coverage report.") |
| 139 | set(ENABLE_COVERAGE OFF) |
| 140 | endif() |
| 141 | |
| 142 | find_program(PATH_GENHTML NAMES genhtml) |
| 143 | if(NOT PATH_GENHTML) |
| 144 | message(WARNING "'genhtml' executable not found! Disabling building code coverage report.") |
| 145 | set(ENABLE_COVERAGE OFF) |
| 146 | endif() |
| 147 | |
| 148 | if(NOT CMAKE_COMPILER_IS_GNUCC) |
| 149 | message(WARNING "Compiler is not gcc! Coverage may break the tests!") |
| 150 | endif() |
| 151 | |
| 152 | if(ENABLE_COVERAGE) |
| 153 | set(CMAKE_C_FLAGS_COVERAGE "${CMAKE_C_FLAGS} --coverage -fprofile-arcs -ftest-coverage") |
| 154 | endif() |
| 155 | endif() |
Radek Krejci | ce24ab8 | 2015-10-08 15:37:02 +0200 | [diff] [blame] | 156 | |
Radek Krejci | 32898d5 | 2016-07-14 17:37:02 +0200 | [diff] [blame] | 157 | # dependencies - pthread |
Michal Vasko | 73ed967 | 2016-01-29 13:15:15 +0100 | [diff] [blame] | 158 | set(CMAKE_THREAD_PREFER_PTHREAD TRUE) |
| 159 | find_package(Threads REQUIRED) |
| 160 | target_link_libraries(netconf2 ${CMAKE_THREAD_LIBS_INIT}) |
| 161 | |
Radek Krejci | 2847292 | 2016-07-15 11:51:16 +0200 | [diff] [blame] | 162 | # check availability for some pthread functions |
Radek Krejci | 32898d5 | 2016-07-14 17:37:02 +0200 | [diff] [blame] | 163 | set(CMAKE_REQUIRED_LIBRARIES pthread) |
Michal Vasko | 7ae909a | 2018-11-09 09:51:42 +0100 | [diff] [blame] | 164 | check_include_file(stdatomic.h HAVE_STDATOMIC) |
Radek Krejci | 2847292 | 2016-07-15 11:51:16 +0200 | [diff] [blame] | 165 | check_function_exists(pthread_mutex_timedlock HAVE_PTHREAD_MUTEX_TIMEDLOCK) |
Rosen Penev | ef2f3ac | 2019-07-15 18:15:28 -0700 | [diff] [blame] | 166 | check_function_exists(pthread_rwlockattr_setkind_np HAVE_PTHREAD_RWLOCKATTR_SETKIND_NP) |
Radek Krejci | 32898d5 | 2016-07-14 17:37:02 +0200 | [diff] [blame] | 167 | |
Radek Krejci | 4f2d40d | 2015-10-08 12:55:01 +0200 | [diff] [blame] | 168 | # dependencies - openssl |
Radek Krejci | 5c69cdf | 2017-05-26 16:29:29 +0200 | [diff] [blame] | 169 | if(ENABLE_TLS OR ENABLE_DNSSEC OR ENABLE_SSH) |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 170 | find_package(OpenSSL REQUIRED) |
Claus Klein | 2209191 | 2020-01-20 13:45:47 +0100 | [diff] [blame] | 171 | if(ENABLE_TLS) |
| 172 | message(STATUS "OPENSSL found, required for TLS") |
Fred Gan | 5eda9cb | 2020-12-11 16:32:08 +0800 | [diff] [blame] | 173 | set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${CMAKE_C_FLAGS_COVERAGE} -DNC_ENABLED_TLS") |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 174 | endif() |
Claus Klein | 2209191 | 2020-01-20 13:45:47 +0100 | [diff] [blame] | 175 | |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 176 | target_link_libraries(netconf2 ${OPENSSL_LIBRARIES}) |
| 177 | include_directories(${OPENSSL_INCLUDE_DIR}) |
| 178 | endif() |
| 179 | |
Michal Vasko | 474d373 | 2017-09-27 13:57:00 +0200 | [diff] [blame] | 180 | # dependencies - libssh |
| 181 | if(ENABLE_SSH) |
Michal Vasko | 819598b | 2020-07-29 10:05:11 +0200 | [diff] [blame] | 182 | find_package(LibSSH 0.7.1 REQUIRED) |
Michal Vasko | ed4a452 | 2020-05-19 16:46:12 +0200 | [diff] [blame] | 183 | if(LIBSSH_VERSION VERSION_EQUAL 0.9.3 OR LIBSSH_VERSION VERSION_EQUAL 0.9.4) |
| 184 | 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] | 185 | endif() |
Claus Klein | 2209191 | 2020-01-20 13:45:47 +0100 | [diff] [blame] | 186 | |
Michal Vasko | ed4a452 | 2020-05-19 16:46:12 +0200 | [diff] [blame] | 187 | target_link_libraries(netconf2 ${LIBSSH_LIBRARIES}) |
| 188 | list(APPEND CMAKE_REQUIRED_LIBRARIES ${LIBSSH_LIBRARIES}) |
Michal Vasko | 474d373 | 2017-09-27 13:57:00 +0200 | [diff] [blame] | 189 | include_directories(${LIBSSH_INCLUDE_DIRS}) |
Fred Gan | 5eda9cb | 2020-12-11 16:32:08 +0800 | [diff] [blame] | 190 | set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${CMAKE_C_FLAGS_COVERAGE} -DNC_ENABLED_SSH") |
Michal Vasko | 71514b3 | 2020-04-07 13:36:51 +0200 | [diff] [blame] | 191 | |
| 192 | # crypt |
apropp-molex | 4e903c3 | 2020-04-20 03:06:58 -0400 | [diff] [blame] | 193 | if(NOT ${CMAKE_SYSTEM_NAME} MATCHES "QNX") |
| 194 | target_link_libraries(netconf2 -lcrypt) |
| 195 | list(APPEND CMAKE_REQUIRED_LIBRARIES crypt) |
| 196 | else() |
| 197 | target_link_libraries(netconf2 -llogin) |
| 198 | list(APPEND CMAKE_REQUIRED_LIBRARIES login) |
| 199 | endif() |
Michal Vasko | 474d373 | 2017-09-27 13:57:00 +0200 | [diff] [blame] | 200 | endif() |
| 201 | |
Michal Vasko | 73ed967 | 2016-01-29 13:15:15 +0100 | [diff] [blame] | 202 | # dependencies - libval |
Claus Klein | 2209191 | 2020-01-20 13:45:47 +0100 | [diff] [blame] | 203 | if(ENABLE_DNSSEC) |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 204 | find_package(LibVAL REQUIRED) |
Fred Gan | 5eda9cb | 2020-12-11 16:32:08 +0800 | [diff] [blame] | 205 | set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${CMAKE_C_FLAGS_COVERAGE} -DENABLE_DNSSEC") |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 206 | target_link_libraries(netconf2 ${LIBVAL_LIBRARIES}) |
| 207 | include_directories(${LIBVAL_INCLUDE_DIRS}) |
Radek Krejci | 4f2d40d | 2015-10-08 12:55:01 +0200 | [diff] [blame] | 208 | endif() |
| 209 | |
| 210 | # dependencies - libyang |
| 211 | find_package(LibYANG REQUIRED) |
| 212 | target_link_libraries(netconf2 ${LIBYANG_LIBRARIES}) |
| 213 | include_directories(${LIBYANG_INCLUDE_DIRS}) |
| 214 | |
apropp-molex | 4e903c3 | 2020-04-20 03:06:58 -0400 | [diff] [blame] | 215 | # header file compatibility - shadow.h and crypt.h |
| 216 | check_include_file("shadow.h" HAVE_SHADOW) |
| 217 | check_include_file("crypt.h" HAVE_CRYPT) |
| 218 | |
| 219 | # function compatibility - getpeereid on QNX |
| 220 | if(${CMAKE_SYSTEM_NAME} MATCHES "QNX") |
| 221 | target_link_libraries(netconf2 -lsocket) |
| 222 | list(APPEND CMAKE_REQUIRED_LIBRARIES socket) |
| 223 | list(REMOVE_ITEM CMAKE_REQUIRED_LIBRARIES pthread) |
| 224 | list(APPEND CMAKE_REQUIRED_DEFINITIONS -D_QNX_SOURCE) |
| 225 | check_symbol_exists(getpeereid "sys/types.h;unistd.h" HAVE_GETPEEREID) |
| 226 | list(REMOVE_ITEM CMAKE_REQUIRED_DEFINITIONS -D_QNX_SOURCE) |
| 227 | endif() |
| 228 | |
Michal Vasko | 51cda3c | 2016-01-29 14:41:26 +0100 | [diff] [blame] | 229 | # generate doxygen documentation for libnetconf2 API |
| 230 | find_package(Doxygen) |
| 231 | if(DOXYGEN_FOUND) |
| 232 | set(DOXYGEN_SKIP_DOT TRUE) |
| 233 | add_custom_target(doc |
| 234 | COMMAND ${DOXYGEN_EXECUTABLE} ${CMAKE_BINARY_DIR}/Doxyfile |
| 235 | WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}) |
| 236 | configure_file(Doxyfile.in Doxyfile) |
| 237 | endif() |
| 238 | |
Radek Krejci | c61f0b4 | 2017-06-07 13:21:41 +0200 | [diff] [blame] | 239 | # Python bindings |
| 240 | if(ENABLE_PYTHON) |
| 241 | add_subdirectory(python) |
Claus Klein | 2209191 | 2020-01-20 13:45:47 +0100 | [diff] [blame] | 242 | endif() |
Radek Krejci | c61f0b4 | 2017-06-07 13:21:41 +0200 | [diff] [blame] | 243 | |
Michal Vasko | 4cb2d72 | 2020-04-23 13:49:16 +0200 | [diff] [blame] | 244 | # packages |
| 245 | add_subdirectory(packages) |
| 246 | |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 247 | # install library |
Jan Kundrát | b78cdfc | 2016-11-04 17:11:24 +0100 | [diff] [blame] | 248 | install(TARGETS netconf2 DESTINATION ${CMAKE_INSTALL_LIBDIR}) |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 249 | |
| 250 | # install headers |
Jan Kundrát | b78cdfc | 2016-11-04 17:11:24 +0100 | [diff] [blame] | 251 | install(FILES ${CMAKE_CURRENT_BINARY_DIR}/nc_client.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}) |
| 252 | install(FILES ${CMAKE_CURRENT_BINARY_DIR}/nc_server.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}) |
Michal Vasko | 5a44647 | 2020-05-06 12:43:42 +0200 | [diff] [blame] | 253 | install(FILES ${headers} DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/libnetconf2) |
Radek Krejci | 14b1403 | 2015-10-21 15:19:43 +0200 | [diff] [blame] | 254 | |
Michal Vasko | 6779d18 | 2016-02-17 14:36:36 +0100 | [diff] [blame] | 255 | # install pkg-config file |
| 256 | find_package(PkgConfig) |
| 257 | if(PKG_CONFIG_FOUND) |
| 258 | configure_file("libnetconf2.pc.in" "libnetconf2.pc" @ONLY) |
Jan Kundrát | b78cdfc | 2016-11-04 17:11:24 +0100 | [diff] [blame] | 259 | 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] | 260 | # check that pkg-config includes the used path |
| 261 | execute_process(COMMAND ${PKG_CONFIG_EXECUTABLE} --variable pc_path pkg-config RESULT_VARIABLE RETURN OUTPUT_VARIABLE PC_PATH ERROR_QUIET) |
| 262 | if(RETURN EQUAL 0) |
Jan Kundrát | b78cdfc | 2016-11-04 17:11:24 +0100 | [diff] [blame] | 263 | string(REGEX MATCH "${CMAKE_INSTALL_LIBDIR}/pkgconfig" SUBSTR "${PC_PATH}") |
Michal Vasko | 6779d18 | 2016-02-17 14:36:36 +0100 | [diff] [blame] | 264 | string(LENGTH "${SUBSTR}" SUBSTR_LEN) |
| 265 | if(SUBSTR_LEN EQUAL 0) |
Jan Kundrát | b78cdfc | 2016-11-04 17:11:24 +0100 | [diff] [blame] | 266 | 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] | 267 | endif() |
| 268 | endif() |
| 269 | endif() |
| 270 | |
Radek Krejci | ce24ab8 | 2015-10-08 15:37:02 +0200 | [diff] [blame] | 271 | if(ENABLE_VALGRIND_TESTS) |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 272 | set(ENABLE_BUILD_TESTS ON) |
Radek Krejci | ce24ab8 | 2015-10-08 15:37:02 +0200 | [diff] [blame] | 273 | endif() |
| 274 | |
| 275 | if(ENABLE_BUILD_TESTS) |
Radek Krejci | eaa0672 | 2016-02-26 14:27:32 +0100 | [diff] [blame] | 276 | find_package(CMocka 1.0.0) |
| 277 | if(CMOCKA_FOUND) |
| 278 | enable_testing() |
| 279 | add_subdirectory(tests) |
Claus Klein | 2209191 | 2020-01-20 13:45:47 +0100 | [diff] [blame] | 280 | endif() |
Radek Krejci | ce24ab8 | 2015-10-08 15:37:02 +0200 | [diff] [blame] | 281 | endif() |
| 282 | |
Jan Kundrát | cf15d6c | 2017-10-26 18:07:56 +0200 | [diff] [blame] | 283 | 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] | 284 | configure_file(nc_client.h.in nc_client.h) |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 285 | configure_file(nc_server.h.in nc_server.h) |
Radek Krejci | 14b1403 | 2015-10-21 15:19:43 +0200 | [diff] [blame] | 286 | |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 287 | # clean cmake cache |
| 288 | add_custom_target(cleancache |
| 289 | COMMAND make clean |
| 290 | COMMAND find . -iname '*cmake*' -not -name CMakeLists.txt -exec rm -rf {} + |
| 291 | COMMAND rm -rf Makefile Doxyfile |
| 292 | WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}) |
Bi-Ruei, Chiu | f5faf83 | 2019-09-21 20:15:59 +0800 | [diff] [blame] | 293 | |
| 294 | # uninstall |
| 295 | add_custom_target(uninstall "${CMAKE_COMMAND}" -P "${CMAKE_MODULE_PATH}/uninstall.cmake") |