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) |
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) |
Michal Vasko | e740214 | 2021-05-26 13:45:43 +0200 | [diff] [blame] | 13 | include(ABICheck) |
Michal Vasko | b0e3ec4 | 2021-05-26 09:48:31 +0200 | [diff] [blame] | 14 | include(SourceFormat) |
Michal Vasko | 4e6d324 | 2021-05-26 09:13:24 +0200 | [diff] [blame] | 15 | include(GenDoc) |
Claus Klein | 2209191 | 2020-01-20 13:45:47 +0100 | [diff] [blame] | 16 | |
Michal Vasko | d612369 | 2019-07-16 16:04:16 +0200 | [diff] [blame] | 17 | if(POLICY CMP0075) |
| 18 | cmake_policy(SET CMP0075 NEW) |
| 19 | endif() |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 20 | |
Michal Vasko | 6779d18 | 2016-02-17 14:36:36 +0100 | [diff] [blame] | 21 | set(LIBNETCONF2_DESCRIPTION "NETCONF server and client library in C.") |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 22 | |
| 23 | # check the supported platform |
| 24 | if(NOT UNIX) |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 25 | message(FATAL_ERROR "Only *nix like systems are supported.") |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 26 | endif() |
| 27 | |
Michal Vasko | 63b52fc | 2018-02-16 10:08:17 +0100 | [diff] [blame] | 28 | # osx specific |
| 29 | set(CMAKE_MACOSX_RPATH TRUE) |
| 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() |
Radek Krejci | 97e3787 | 2021-05-24 22:16:37 +0200 | [diff] [blame] | 35 | # normalize build type string |
| 36 | string(TOUPPER "${CMAKE_BUILD_TYPE}" BUILD_TYPE_UPPER) |
| 37 | if ("${BUILD_TYPE_UPPER}" STREQUAL "RELEASE") |
Michal Vasko | e740214 | 2021-05-26 13:45:43 +0200 | [diff] [blame] | 38 | set(CMAKE_BUILD_TYPE "Release" CACHE STRING "Build Type" FORCE) |
| 39 | elseif("${BUILD_TYPE_UPPER}" STREQUAL "DEBUG") |
| 40 | set(CMAKE_BUILD_TYPE "Debug" CACHE STRING "Build Type" FORCE) |
| 41 | elseif("${BUILD_TYPE_UPPER}" STREQUAL "RELWITHDEBINFO") |
| 42 | set(CMAKE_BUILD_TYPE "RelWithDebInfo" CACHE STRING "Build Type" FORCE) |
| 43 | elseif("${BUILD_TYPE_UPPER}" STREQUAL "RELWITHDEBUG") |
| 44 | set(CMAKE_BUILD_TYPE "RelWithDebug" CACHE STRING "Build Type" FORCE) |
| 45 | elseif("${BUILD_TYPE_UPPER}" STREQUAL "ABICHECK") |
| 46 | set(CMAKE_BUILD_TYPE "ABICheck" CACHE STRING "Build Type" FORCE) |
| 47 | elseif("${BUILD_TYPE_UPPER}" STREQUAL "DOCONLY") |
| 48 | set(CMAKE_BUILD_TYPE "DocOnly" CACHE STRING "Build Type" FORCE) |
Radek Krejci | 97e3787 | 2021-05-24 22:16:37 +0200 | [diff] [blame] | 49 | endif() |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 50 | |
Michal Vasko | 08d5cde | 2019-07-10 14:34:55 +0200 | [diff] [blame] | 51 | # Version of the project |
| 52 | # Generic version of not only the library. Major version is reserved for really big changes of the project, |
| 53 | # minor version changes with added functionality (new tool, functionality of the tool or library, ...) and |
| 54 | # micro version is changed with a set of small changes or bugfixes anywhere in the project. |
Michal Vasko | a11ddd9 | 2021-05-26 13:24:23 +0200 | [diff] [blame] | 55 | set(LIBNETCONF2_MAJOR_VERSION 2) |
| 56 | set(LIBNETCONF2_MINOR_VERSION 0) |
| 57 | set(LIBNETCONF2_MICRO_VERSION 0) |
Radek Krejci | 4f2d40d | 2015-10-08 12:55:01 +0200 | [diff] [blame] | 58 | set(LIBNETCONF2_VERSION ${LIBNETCONF2_MAJOR_VERSION}.${LIBNETCONF2_MINOR_VERSION}.${LIBNETCONF2_MICRO_VERSION}) |
Michal Vasko | 08d5cde | 2019-07-10 14:34:55 +0200 | [diff] [blame] | 59 | |
| 60 | # Version of the library |
| 61 | # Major version is changed with every backward non-compatible API/ABI change in libyang, minor version changes |
| 62 | # with backward compatible change and micro version is connected with any internal change of the library. |
Michal Vasko | e7e38a5 | 2021-05-26 13:24:12 +0200 | [diff] [blame] | 63 | set(LIBNETCONF2_MAJOR_SOVERSION 2) |
| 64 | set(LIBNETCONF2_MINOR_SOVERSION 0) |
| 65 | set(LIBNETCONF2_MICRO_SOVERSION 0) |
Michal Vasko | 08d5cde | 2019-07-10 14:34:55 +0200 | [diff] [blame] | 66 | set(LIBNETCONF2_SOVERSION_FULL ${LIBNETCONF2_MAJOR_SOVERSION}.${LIBNETCONF2_MINOR_SOVERSION}.${LIBNETCONF2_MICRO_SOVERSION}) |
| 67 | set(LIBNETCONF2_SOVERSION ${LIBNETCONF2_MAJOR_SOVERSION}) |
Radek Krejci | 4f2d40d | 2015-10-08 12:55:01 +0200 | [diff] [blame] | 68 | |
Michal Vasko | 819598b | 2020-07-29 10:05:11 +0200 | [diff] [blame] | 69 | # libyang SO version required |
Michal Vasko | 429a747 | 2021-04-15 10:00:28 +0200 | [diff] [blame] | 70 | set(LIBYANG_DEP_SOVERSION_MAJOR 2) |
Michal Vasko | 819598b | 2020-07-29 10:05:11 +0200 | [diff] [blame] | 71 | |
Radek Krejci | ac6d347 | 2015-10-22 15:47:18 +0200 | [diff] [blame] | 72 | # build options |
Michal Vasko | 5eb648d | 2021-05-26 09:11:52 +0200 | [diff] [blame] | 73 | if(("${BUILD_TYPE_UPPER}" STREQUAL "DEBUG") OR ("${BUILD_TYPE_UPPER}" STREQUAL "RELWITHDEBINFO")) |
| 74 | option(ENABLE_BUILD_TESTS "Build tests" ON) |
| 75 | option(ENABLE_VALGRIND_TESTS "Build tests with valgrind" ON) |
| 76 | else() |
| 77 | option(ENABLE_BUILD_TESTS "Build tests" OFF) |
| 78 | option(ENABLE_VALGRIND_TESTS "Build tests with valgrind" OFF) |
| 79 | endif() |
| 80 | option(ENABLE_COVERAGE "Build code coverage report from tests" OFF) |
| 81 | |
| 82 | if(ENABLE_COVERAGE) |
| 83 | find_program(PATH_GCOV NAMES gcov) |
| 84 | if(NOT PATH_GCOV) |
| 85 | message(WARNING "'gcov' executable not found! Disabling building code coverage report.") |
| 86 | set(ENABLE_COVERAGE OFF) |
| 87 | endif() |
| 88 | |
| 89 | find_program(PATH_LCOV NAMES lcov) |
| 90 | if(NOT PATH_LCOV) |
| 91 | message(WARNING "'lcov' executable not found! Disabling building code coverage report.") |
| 92 | set(ENABLE_COVERAGE OFF) |
| 93 | endif() |
| 94 | |
| 95 | find_program(PATH_GENHTML NAMES genhtml) |
| 96 | if(NOT PATH_GENHTML) |
| 97 | message(WARNING "'genhtml' executable not found! Disabling building code coverage report.") |
| 98 | set(ENABLE_COVERAGE OFF) |
| 99 | endif() |
| 100 | |
| 101 | if(NOT CMAKE_COMPILER_IS_GNUCC) |
| 102 | message(WARNING "Compiler is not gcc! Coverage may break the tests!") |
| 103 | endif() |
| 104 | |
| 105 | if(ENABLE_COVERAGE) |
| 106 | set(CMAKE_C_FLAGS_COVERAGE "--coverage -fprofile-arcs -ftest-coverage") |
| 107 | endif() |
| 108 | endif() |
| 109 | |
| 110 | # compilation flags |
Michal Vasko | 7891b94 | 2021-05-26 09:47:00 +0200 | [diff] [blame] | 111 | set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${CMAKE_C_FLAGS_COVERAGE} -Wall -Wextra -fvisibility=hidden -std=gnu99") |
Michal Vasko | 5eb648d | 2021-05-26 09:11:52 +0200 | [diff] [blame] | 112 | set(CMAKE_C_FLAGS_RELEASE "-DNDEBUG -O2") |
| 113 | set(CMAKE_C_FLAGS_DEBUG "-g -O0") |
Michal Vasko | e740214 | 2021-05-26 13:45:43 +0200 | [diff] [blame] | 114 | set(CMAKE_C_FLAGS_ABICHECK "-g -Og") |
Michal Vasko | 5eb648d | 2021-05-26 09:11:52 +0200 | [diff] [blame] | 115 | |
| 116 | # options |
Michal Vasko | fb2fb76 | 2015-10-27 11:44:32 +0100 | [diff] [blame] | 117 | option(ENABLE_SSH "Enable NETCONF over SSH support (via libssh)" ON) |
Michal Vasko | 061dc80 | 2016-02-29 10:15:28 +0100 | [diff] [blame] | 118 | option(ENABLE_TLS "Enable NETCONF over TLS support (via OpenSSL)" ON) |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 119 | option(ENABLE_DNSSEC "Enable support for SSHFP retrieval using DNSSEC for SSH (requires OpenSSL and libval)" OFF) |
Michal Vasko | f471fa0 | 2017-02-15 10:48:12 +0100 | [diff] [blame] | 120 | set(READ_INACTIVE_TIMEOUT 20 CACHE STRING "Maximum number of seconds waiting for new data once some data have arrived") |
| 121 | set(READ_ACTIVE_TIMEOUT 300 CACHE STRING "Maximum number of seconds for receiving a full message") |
| 122 | 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] | 123 | 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] | 124 | 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] | 125 | |
| 126 | if(ENABLE_DNSSEC AND NOT ENABLE_SSH) |
| 127 | message(WARNING "DNSSEC SSHFP retrieval cannot be used without SSH support.") |
| 128 | set(ENABLE_DNSSEC OFF) |
| 129 | endif() |
Radek Krejci | ac6d347 | 2015-10-22 15:47:18 +0200 | [diff] [blame] | 130 | |
Radek Krejci | 4f2d40d | 2015-10-08 12:55:01 +0200 | [diff] [blame] | 131 | # source files |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 132 | set(libsrc |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 133 | src/io.c |
| 134 | src/log.c |
| 135 | src/messages_client.c |
| 136 | src/messages_server.c |
| 137 | src/session.c |
| 138 | src/session_client.c |
Michal Vasko | d7fb6df | 2021-05-19 11:27:35 +0200 | [diff] [blame] | 139 | src/session_server.c) |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 140 | |
Michal Vasko | fb2fb76 | 2015-10-27 11:44:32 +0100 | [diff] [blame] | 141 | if(ENABLE_SSH) |
Claus Klein | 2209191 | 2020-01-20 13:45:47 +0100 | [diff] [blame] | 142 | list(APPEND libsrc |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 143 | src/session_client_ssh.c |
| 144 | src/session_server_ssh.c) |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 145 | 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] | 146 | endif() |
| 147 | |
Radek Krejci | 9f03b48 | 2015-10-22 16:02:10 +0200 | [diff] [blame] | 148 | if(ENABLE_TLS) |
Claus Klein | 2209191 | 2020-01-20 13:45:47 +0100 | [diff] [blame] | 149 | list(APPEND libsrc |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 150 | src/session_client_tls.c |
| 151 | src/session_server_tls.c) |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 152 | 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] | 153 | endif() |
| 154 | |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 155 | set(headers |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 156 | src/log.h |
| 157 | src/netconf.h |
| 158 | src/session.h |
| 159 | src/messages_client.h |
| 160 | src/messages_server.h |
| 161 | src/session_client.h |
Michal Vasko | 45f298f | 2016-01-29 10:26:26 +0100 | [diff] [blame] | 162 | src/session_client_ch.h |
| 163 | src/session_server.h |
| 164 | src/session_server_ch.h) |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 165 | |
Michal Vasko | 5eb648d | 2021-05-26 09:11:52 +0200 | [diff] [blame] | 166 | # files to generate doxygen from |
| 167 | set(doxy_files |
| 168 | src/libnetconf.h |
| 169 | src/log.h |
| 170 | src/netconf.h |
| 171 | src/session.h |
| 172 | src/messages_client.h |
| 173 | src/messages_server.h |
| 174 | src/session_client.h |
| 175 | src/session_client_ch.h |
| 176 | src/session_server.h |
| 177 | src/session_server_ch.h) |
| 178 | |
Michal Vasko | b0e3ec4 | 2021-05-26 09:48:31 +0200 | [diff] [blame] | 179 | # source files to be covered by the 'format' target |
| 180 | set(format_sources |
| 181 | compat/*.c |
| 182 | compat/*.h* |
| 183 | src/*.c |
| 184 | src/*.h |
| 185 | tests/*.c |
| 186 | tests/client/*.c) |
| 187 | |
Radek Krejci | 0a14da0 | 2021-05-24 22:27:28 +0200 | [diff] [blame] | 188 | if("${BUILD_TYPE_UPPER}" STREQUAL "DOCONLY") |
Michal Vasko | 4e6d324 | 2021-05-26 09:13:24 +0200 | [diff] [blame] | 189 | gen_doc("${doxy_files}" ${LIBNETCONF2_VERSION} ${LIBNETCONF2_DESCRIPTION} "") |
Radek Krejci | 0a14da0 | 2021-05-24 22:27:28 +0200 | [diff] [blame] | 190 | return() |
| 191 | endif() |
| 192 | |
Michal Vasko | 9e8ac26 | 2020-04-07 13:06:45 +0200 | [diff] [blame] | 193 | # use compat |
| 194 | use_compat() |
| 195 | |
Claus Klein | 2209191 | 2020-01-20 13:45:47 +0100 | [diff] [blame] | 196 | # netconf2 target |
Michal Vasko | 7a20d2e | 2021-05-19 16:40:23 +0200 | [diff] [blame] | 197 | add_library(netconf2 SHARED ${libsrc} ${compatsrc}) |
Michal Vasko | d853655 | 2020-04-21 14:41:16 +0200 | [diff] [blame] | 198 | set_target_properties(netconf2 PROPERTIES VERSION ${LIBNETCONF2_SOVERSION_FULL} SOVERSION ${LIBNETCONF2_SOVERSION}) |
Radek Krejci | 4f2d40d | 2015-10-08 12:55:01 +0200 | [diff] [blame] | 199 | |
Michal Vasko | 5eb648d | 2021-05-26 09:11:52 +0200 | [diff] [blame] | 200 | # include repository files with highest priority |
| 201 | include_directories(${PROJECT_BINARY_DIR}/src) |
Radek Krejci | ce24ab8 | 2015-10-08 15:37:02 +0200 | [diff] [blame] | 202 | |
Radek Krejci | 32898d5 | 2016-07-14 17:37:02 +0200 | [diff] [blame] | 203 | # dependencies - pthread |
Michal Vasko | 73ed967 | 2016-01-29 13:15:15 +0100 | [diff] [blame] | 204 | set(CMAKE_THREAD_PREFER_PTHREAD TRUE) |
| 205 | find_package(Threads REQUIRED) |
| 206 | target_link_libraries(netconf2 ${CMAKE_THREAD_LIBS_INIT}) |
| 207 | |
Radek Krejci | 2847292 | 2016-07-15 11:51:16 +0200 | [diff] [blame] | 208 | # check availability for some pthread functions |
Radek Krejci | 32898d5 | 2016-07-14 17:37:02 +0200 | [diff] [blame] | 209 | set(CMAKE_REQUIRED_LIBRARIES pthread) |
Michal Vasko | 7ae909a | 2018-11-09 09:51:42 +0100 | [diff] [blame] | 210 | check_include_file(stdatomic.h HAVE_STDATOMIC) |
Rosen Penev | ef2f3ac | 2019-07-15 18:15:28 -0700 | [diff] [blame] | 211 | check_function_exists(pthread_rwlockattr_setkind_np HAVE_PTHREAD_RWLOCKATTR_SETKIND_NP) |
Radek Krejci | 32898d5 | 2016-07-14 17:37:02 +0200 | [diff] [blame] | 212 | |
Radek Krejci | 4f2d40d | 2015-10-08 12:55:01 +0200 | [diff] [blame] | 213 | # dependencies - openssl |
Radek Krejci | 5c69cdf | 2017-05-26 16:29:29 +0200 | [diff] [blame] | 214 | if(ENABLE_TLS OR ENABLE_DNSSEC OR ENABLE_SSH) |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 215 | find_package(OpenSSL REQUIRED) |
Claus Klein | 2209191 | 2020-01-20 13:45:47 +0100 | [diff] [blame] | 216 | if(ENABLE_TLS) |
| 217 | message(STATUS "OPENSSL found, required for TLS") |
Michal Vasko | 5eb648d | 2021-05-26 09:11:52 +0200 | [diff] [blame] | 218 | set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DNC_ENABLED_TLS") |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 219 | endif() |
Claus Klein | 2209191 | 2020-01-20 13:45:47 +0100 | [diff] [blame] | 220 | |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 221 | target_link_libraries(netconf2 ${OPENSSL_LIBRARIES}) |
| 222 | include_directories(${OPENSSL_INCLUDE_DIR}) |
| 223 | endif() |
| 224 | |
Michal Vasko | 474d373 | 2017-09-27 13:57:00 +0200 | [diff] [blame] | 225 | # dependencies - libssh |
| 226 | if(ENABLE_SSH) |
Michal Vasko | 819598b | 2020-07-29 10:05:11 +0200 | [diff] [blame] | 227 | find_package(LibSSH 0.7.1 REQUIRED) |
Michal Vasko | ed4a452 | 2020-05-19 16:46:12 +0200 | [diff] [blame] | 228 | if(LIBSSH_VERSION VERSION_EQUAL 0.9.3 OR LIBSSH_VERSION VERSION_EQUAL 0.9.4) |
| 229 | 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] | 230 | endif() |
Claus Klein | 2209191 | 2020-01-20 13:45:47 +0100 | [diff] [blame] | 231 | |
Michal Vasko | ed4a452 | 2020-05-19 16:46:12 +0200 | [diff] [blame] | 232 | target_link_libraries(netconf2 ${LIBSSH_LIBRARIES}) |
| 233 | list(APPEND CMAKE_REQUIRED_LIBRARIES ${LIBSSH_LIBRARIES}) |
Michal Vasko | 474d373 | 2017-09-27 13:57:00 +0200 | [diff] [blame] | 234 | include_directories(${LIBSSH_INCLUDE_DIRS}) |
Michal Vasko | 5eb648d | 2021-05-26 09:11:52 +0200 | [diff] [blame] | 235 | set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DNC_ENABLED_SSH") |
Michal Vasko | 71514b3 | 2020-04-07 13:36:51 +0200 | [diff] [blame] | 236 | |
| 237 | # crypt |
apropp-molex | 4e903c3 | 2020-04-20 03:06:58 -0400 | [diff] [blame] | 238 | if(NOT ${CMAKE_SYSTEM_NAME} MATCHES "QNX") |
| 239 | target_link_libraries(netconf2 -lcrypt) |
| 240 | list(APPEND CMAKE_REQUIRED_LIBRARIES crypt) |
| 241 | else() |
| 242 | target_link_libraries(netconf2 -llogin) |
| 243 | list(APPEND CMAKE_REQUIRED_LIBRARIES login) |
| 244 | endif() |
Michal Vasko | 474d373 | 2017-09-27 13:57:00 +0200 | [diff] [blame] | 245 | endif() |
| 246 | |
Michal Vasko | 73ed967 | 2016-01-29 13:15:15 +0100 | [diff] [blame] | 247 | # dependencies - libval |
Claus Klein | 2209191 | 2020-01-20 13:45:47 +0100 | [diff] [blame] | 248 | if(ENABLE_DNSSEC) |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 249 | find_package(LibVAL REQUIRED) |
Michal Vasko | 5eb648d | 2021-05-26 09:11:52 +0200 | [diff] [blame] | 250 | set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DENABLE_DNSSEC") |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 251 | target_link_libraries(netconf2 ${LIBVAL_LIBRARIES}) |
| 252 | include_directories(${LIBVAL_INCLUDE_DIRS}) |
Radek Krejci | 4f2d40d | 2015-10-08 12:55:01 +0200 | [diff] [blame] | 253 | endif() |
| 254 | |
| 255 | # dependencies - libyang |
Michal Vasko | 429a747 | 2021-04-15 10:00:28 +0200 | [diff] [blame] | 256 | find_package(LibYANG ${LIBYANG_DEP_SOVERSION_MAJOR} REQUIRED) |
Radek Krejci | 4f2d40d | 2015-10-08 12:55:01 +0200 | [diff] [blame] | 257 | target_link_libraries(netconf2 ${LIBYANG_LIBRARIES}) |
| 258 | include_directories(${LIBYANG_INCLUDE_DIRS}) |
| 259 | |
apropp-molex | 4e903c3 | 2020-04-20 03:06:58 -0400 | [diff] [blame] | 260 | # header file compatibility - shadow.h and crypt.h |
| 261 | check_include_file("shadow.h" HAVE_SHADOW) |
| 262 | check_include_file("crypt.h" HAVE_CRYPT) |
| 263 | |
| 264 | # function compatibility - getpeereid on QNX |
| 265 | if(${CMAKE_SYSTEM_NAME} MATCHES "QNX") |
| 266 | target_link_libraries(netconf2 -lsocket) |
| 267 | list(APPEND CMAKE_REQUIRED_LIBRARIES socket) |
| 268 | list(REMOVE_ITEM CMAKE_REQUIRED_LIBRARIES pthread) |
| 269 | list(APPEND CMAKE_REQUIRED_DEFINITIONS -D_QNX_SOURCE) |
| 270 | check_symbol_exists(getpeereid "sys/types.h;unistd.h" HAVE_GETPEEREID) |
| 271 | list(REMOVE_ITEM CMAKE_REQUIRED_DEFINITIONS -D_QNX_SOURCE) |
| 272 | endif() |
| 273 | |
Michal Vasko | 5eb648d | 2021-05-26 09:11:52 +0200 | [diff] [blame] | 274 | # generate files |
| 275 | configure_file("${PROJECT_SOURCE_DIR}/src/config.h.in" "${PROJECT_BINARY_DIR}/src/config.h" ESCAPE_QUOTES @ONLY) |
| 276 | configure_file(nc_client.h.in nc_client.h) |
| 277 | configure_file(nc_server.h.in nc_server.h) |
| 278 | |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 279 | # install library |
Jan Kundrát | b78cdfc | 2016-11-04 17:11:24 +0100 | [diff] [blame] | 280 | install(TARGETS netconf2 DESTINATION ${CMAKE_INSTALL_LIBDIR}) |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 281 | |
| 282 | # install headers |
Jan Kundrát | b78cdfc | 2016-11-04 17:11:24 +0100 | [diff] [blame] | 283 | install(FILES ${CMAKE_CURRENT_BINARY_DIR}/nc_client.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}) |
| 284 | install(FILES ${CMAKE_CURRENT_BINARY_DIR}/nc_server.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}) |
Michal Vasko | e740214 | 2021-05-26 13:45:43 +0200 | [diff] [blame] | 285 | install(FILES ${headers} ${PROJECT_BINARY_DIR}/src/config.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/libnetconf2) |
Radek Krejci | 14b1403 | 2015-10-21 15:19:43 +0200 | [diff] [blame] | 286 | |
Michal Vasko | 6779d18 | 2016-02-17 14:36:36 +0100 | [diff] [blame] | 287 | # install pkg-config file |
| 288 | find_package(PkgConfig) |
| 289 | if(PKG_CONFIG_FOUND) |
| 290 | configure_file("libnetconf2.pc.in" "libnetconf2.pc" @ONLY) |
Jan Kundrát | b78cdfc | 2016-11-04 17:11:24 +0100 | [diff] [blame] | 291 | 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] | 292 | # check that pkg-config includes the used path |
| 293 | execute_process(COMMAND ${PKG_CONFIG_EXECUTABLE} --variable pc_path pkg-config RESULT_VARIABLE RETURN OUTPUT_VARIABLE PC_PATH ERROR_QUIET) |
| 294 | if(RETURN EQUAL 0) |
Jan Kundrát | b78cdfc | 2016-11-04 17:11:24 +0100 | [diff] [blame] | 295 | string(REGEX MATCH "${CMAKE_INSTALL_LIBDIR}/pkgconfig" SUBSTR "${PC_PATH}") |
Michal Vasko | 6779d18 | 2016-02-17 14:36:36 +0100 | [diff] [blame] | 296 | string(LENGTH "${SUBSTR}" SUBSTR_LEN) |
| 297 | if(SUBSTR_LEN EQUAL 0) |
Jan Kundrát | b78cdfc | 2016-11-04 17:11:24 +0100 | [diff] [blame] | 298 | 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] | 299 | endif() |
| 300 | endif() |
| 301 | endif() |
| 302 | |
Michal Vasko | b0e3ec4 | 2021-05-26 09:48:31 +0200 | [diff] [blame] | 303 | if ("${BUILD_TYPE_UPPER}" STREQUAL "DEBUG") |
| 304 | # enable before adding tests to let them detect that format checking is available - one of the tests is format checking |
| 305 | source_format_enable() |
| 306 | endif() |
| 307 | |
| 308 | # source files to be covered by the 'format' target and a test with 'format-check' target |
| 309 | source_format(${format_sources}) |
| 310 | |
Radek Krejci | ce24ab8 | 2015-10-08 15:37:02 +0200 | [diff] [blame] | 311 | if(ENABLE_VALGRIND_TESTS) |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 312 | set(ENABLE_BUILD_TESTS ON) |
Radek Krejci | ce24ab8 | 2015-10-08 15:37:02 +0200 | [diff] [blame] | 313 | endif() |
| 314 | |
| 315 | if(ENABLE_BUILD_TESTS) |
Radek Krejci | eaa0672 | 2016-02-26 14:27:32 +0100 | [diff] [blame] | 316 | find_package(CMocka 1.0.0) |
| 317 | if(CMOCKA_FOUND) |
| 318 | enable_testing() |
| 319 | add_subdirectory(tests) |
Claus Klein | 2209191 | 2020-01-20 13:45:47 +0100 | [diff] [blame] | 320 | endif() |
Radek Krejci | ce24ab8 | 2015-10-08 15:37:02 +0200 | [diff] [blame] | 321 | endif() |
| 322 | |
Michal Vasko | b0e3ec4 | 2021-05-26 09:48:31 +0200 | [diff] [blame] | 323 | # generate doxygen documentation for libnetconf2 API |
| 324 | gen_doc("${doxy_files}" ${LIBNETCONF2_VERSION} ${LIBNETCONF2_DESCRIPTION} "") |
| 325 | |
Michal Vasko | e740214 | 2021-05-26 13:45:43 +0200 | [diff] [blame] | 326 | # generate API/ABI report |
| 327 | if ("${BUILD_TYPE_UPPER}" STREQUAL "ABICHECK") |
Michal Vasko | 697729e | 2021-05-26 13:46:23 +0200 | [diff] [blame] | 328 | lib_abi_check(netconf2 "${headers}" ${LIBNETCONF2_SOVERSION_FULL} e7402149e5b36de7acab2e38970a3a9d6a8165d5) |
Michal Vasko | e740214 | 2021-05-26 13:45:43 +0200 | [diff] [blame] | 329 | endif() |
| 330 | |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 331 | # clean cmake cache |
| 332 | add_custom_target(cleancache |
| 333 | COMMAND make clean |
| 334 | COMMAND find . -iname '*cmake*' -not -name CMakeLists.txt -exec rm -rf {} + |
| 335 | COMMAND rm -rf Makefile Doxyfile |
| 336 | WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}) |
Bi-Ruei, Chiu | f5faf83 | 2019-09-21 20:15:59 +0800 | [diff] [blame] | 337 | |
| 338 | # uninstall |
| 339 | add_custom_target(uninstall "${CMAKE_COMMAND}" -P "${CMAKE_MODULE_PATH}/uninstall.cmake") |