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) |
Michal Vasko | 2cd7163 | 2021-06-04 12:03:12 +0200 | [diff] [blame] | 16 | include(GenCoverage) |
Claus Klein | 2209191 | 2020-01-20 13:45:47 +0100 | [diff] [blame] | 17 | |
Michal Vasko | d612369 | 2019-07-16 16:04:16 +0200 | [diff] [blame] | 18 | if(POLICY CMP0075) |
| 19 | cmake_policy(SET CMP0075 NEW) |
| 20 | endif() |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 21 | |
Michal Vasko | 6779d18 | 2016-02-17 14:36:36 +0100 | [diff] [blame] | 22 | set(LIBNETCONF2_DESCRIPTION "NETCONF server and client library in C.") |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 23 | |
| 24 | # check the supported platform |
| 25 | if(NOT UNIX) |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 26 | message(FATAL_ERROR "Only *nix like systems are supported.") |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 27 | endif() |
| 28 | |
Michal Vasko | 63b52fc | 2018-02-16 10:08:17 +0100 | [diff] [blame] | 29 | # osx specific |
| 30 | set(CMAKE_MACOSX_RPATH TRUE) |
| 31 | |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 32 | # set default build type if not specified by user |
| 33 | if(NOT CMAKE_BUILD_TYPE) |
Claus Klein | 2209191 | 2020-01-20 13:45:47 +0100 | [diff] [blame] | 34 | set(CMAKE_BUILD_TYPE Debug) |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 35 | endif() |
Jan Kundrát | 1d54fce | 2021-10-08 19:48:19 +0200 | [diff] [blame] | 36 | # see https://github.com/CESNET/libyang/pull/1692 for why CMAKE_C_FLAGS_<type> are not used directly |
Radek Krejci | 97e3787 | 2021-05-24 22:16:37 +0200 | [diff] [blame] | 37 | # normalize build type string |
| 38 | string(TOUPPER "${CMAKE_BUILD_TYPE}" BUILD_TYPE_UPPER) |
| 39 | if ("${BUILD_TYPE_UPPER}" STREQUAL "RELEASE") |
Michal Vasko | e740214 | 2021-05-26 13:45:43 +0200 | [diff] [blame] | 40 | set(CMAKE_BUILD_TYPE "Release" CACHE STRING "Build Type" FORCE) |
Jan Kundrát | 1d54fce | 2021-10-08 19:48:19 +0200 | [diff] [blame] | 41 | set(CMAKE_C_FLAGS "-DNDEBUG -O2 ${CMAKE_C_FLAGS}") |
Michal Vasko | e740214 | 2021-05-26 13:45:43 +0200 | [diff] [blame] | 42 | elseif("${BUILD_TYPE_UPPER}" STREQUAL "DEBUG") |
| 43 | set(CMAKE_BUILD_TYPE "Debug" CACHE STRING "Build Type" FORCE) |
Jan Kundrát | 1d54fce | 2021-10-08 19:48:19 +0200 | [diff] [blame] | 44 | set(CMAKE_C_FLAGS "-g -O0 ${CMAKE_C_FLAGS}") |
Michal Vasko | e740214 | 2021-05-26 13:45:43 +0200 | [diff] [blame] | 45 | elseif("${BUILD_TYPE_UPPER}" STREQUAL "RELWITHDEBINFO") |
| 46 | set(CMAKE_BUILD_TYPE "RelWithDebInfo" CACHE STRING "Build Type" FORCE) |
| 47 | elseif("${BUILD_TYPE_UPPER}" STREQUAL "RELWITHDEBUG") |
| 48 | set(CMAKE_BUILD_TYPE "RelWithDebug" CACHE STRING "Build Type" FORCE) |
| 49 | elseif("${BUILD_TYPE_UPPER}" STREQUAL "ABICHECK") |
| 50 | set(CMAKE_BUILD_TYPE "ABICheck" CACHE STRING "Build Type" FORCE) |
Jan Kundrát | 1d54fce | 2021-10-08 19:48:19 +0200 | [diff] [blame] | 51 | set(CMAKE_C_FLAGS "-g -Og ${CMAKE_C_FLAGS}") |
Michal Vasko | e740214 | 2021-05-26 13:45:43 +0200 | [diff] [blame] | 52 | elseif("${BUILD_TYPE_UPPER}" STREQUAL "DOCONLY") |
| 53 | set(CMAKE_BUILD_TYPE "DocOnly" CACHE STRING "Build Type" FORCE) |
Radek Krejci | 97e3787 | 2021-05-24 22:16:37 +0200 | [diff] [blame] | 54 | endif() |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 55 | |
Michal Vasko | 08d5cde | 2019-07-10 14:34:55 +0200 | [diff] [blame] | 56 | # Version of the project |
| 57 | # Generic version of not only the library. Major version is reserved for really big changes of the project, |
| 58 | # minor version changes with added functionality (new tool, functionality of the tool or library, ...) and |
| 59 | # 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] | 60 | set(LIBNETCONF2_MAJOR_VERSION 2) |
Michal Vasko | e2bf497 | 2021-11-09 12:20:29 +0100 | [diff] [blame] | 61 | set(LIBNETCONF2_MINOR_VERSION 1) |
Michal Vasko | 6a04e91 | 2022-10-20 09:10:17 +0200 | [diff] [blame] | 62 | set(LIBNETCONF2_MICRO_VERSION 24) |
Radek Krejci | 4f2d40d | 2015-10-08 12:55:01 +0200 | [diff] [blame] | 63 | set(LIBNETCONF2_VERSION ${LIBNETCONF2_MAJOR_VERSION}.${LIBNETCONF2_MINOR_VERSION}.${LIBNETCONF2_MICRO_VERSION}) |
Michal Vasko | 08d5cde | 2019-07-10 14:34:55 +0200 | [diff] [blame] | 64 | |
| 65 | # Version of the library |
| 66 | # Major version is changed with every backward non-compatible API/ABI change in libyang, minor version changes |
| 67 | # with backward compatible change and micro version is connected with any internal change of the library. |
Michal Vasko | 7925883 | 2021-11-09 12:20:20 +0100 | [diff] [blame] | 68 | set(LIBNETCONF2_MAJOR_SOVERSION 3) |
Michal Vasko | 668ddcb | 2022-10-20 09:10:06 +0200 | [diff] [blame] | 69 | set(LIBNETCONF2_MINOR_SOVERSION 5) |
Michal Vasko | 316c9b3 | 2022-10-21 13:39:54 +0200 | [diff] [blame^] | 70 | set(LIBNETCONF2_MICRO_SOVERSION 1) |
Michal Vasko | 08d5cde | 2019-07-10 14:34:55 +0200 | [diff] [blame] | 71 | set(LIBNETCONF2_SOVERSION_FULL ${LIBNETCONF2_MAJOR_SOVERSION}.${LIBNETCONF2_MINOR_SOVERSION}.${LIBNETCONF2_MICRO_SOVERSION}) |
| 72 | set(LIBNETCONF2_SOVERSION ${LIBNETCONF2_MAJOR_SOVERSION}) |
Radek Krejci | 4f2d40d | 2015-10-08 12:55:01 +0200 | [diff] [blame] | 73 | |
Michal Vasko | a50f68e | 2022-02-24 16:10:54 +0100 | [diff] [blame] | 74 | # Version of libyang library that this project depends on |
| 75 | set(LIBYANG_DEP_VERSION 2.0.159) |
| 76 | set(LIBYANG_DEP_SOVERSION 2.18.1) |
Michal Vasko | 429a747 | 2021-04-15 10:00:28 +0200 | [diff] [blame] | 77 | set(LIBYANG_DEP_SOVERSION_MAJOR 2) |
Michal Vasko | 819598b | 2020-07-29 10:05:11 +0200 | [diff] [blame] | 78 | |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 79 | set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -fvisibility=hidden -std=gnu99") |
Michal Vasko | 5eb648d | 2021-05-26 09:11:52 +0200 | [diff] [blame] | 80 | |
Michal Vasko | 2cd7163 | 2021-06-04 12:03:12 +0200 | [diff] [blame] | 81 | # |
Michal Vasko | 5eb648d | 2021-05-26 09:11:52 +0200 | [diff] [blame] | 82 | # options |
Michal Vasko | 2cd7163 | 2021-06-04 12:03:12 +0200 | [diff] [blame] | 83 | # |
| 84 | if(("${BUILD_TYPE_UPPER}" STREQUAL "DEBUG") OR ("${BUILD_TYPE_UPPER}" STREQUAL "RELWITHDEBINFO")) |
| 85 | option(ENABLE_TESTS "Build tests" ON) |
| 86 | option(ENABLE_VALGRIND_TESTS "Build tests with valgrind" ON) |
| 87 | else() |
| 88 | option(ENABLE_TESTS "Build tests" OFF) |
| 89 | option(ENABLE_VALGRIND_TESTS "Build tests with valgrind" OFF) |
| 90 | endif() |
Roman Janota | 907cf93 | 2022-06-03 12:33:34 +0200 | [diff] [blame] | 91 | option(ENABLE_EXAMPLES "Build examples" ON) |
Michal Vasko | 2cd7163 | 2021-06-04 12:03:12 +0200 | [diff] [blame] | 92 | option(ENABLE_COVERAGE "Build code coverage report from tests" OFF) |
Michal Vasko | fb2fb76 | 2015-10-27 11:44:32 +0100 | [diff] [blame] | 93 | option(ENABLE_SSH "Enable NETCONF over SSH support (via libssh)" ON) |
Michal Vasko | 061dc80 | 2016-02-29 10:15:28 +0100 | [diff] [blame] | 94 | option(ENABLE_TLS "Enable NETCONF over TLS support (via OpenSSL)" ON) |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 95 | 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] | 96 | set(READ_INACTIVE_TIMEOUT 20 CACHE STRING "Maximum number of seconds waiting for new data once some data have arrived") |
| 97 | set(READ_ACTIVE_TIMEOUT 300 CACHE STRING "Maximum number of seconds for receiving a full message") |
| 98 | 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] | 99 | 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] | 100 | set(YANG_MODULE_DIR "${CMAKE_INSTALL_PREFIX}/share/yang/modules" CACHE STRING "Directory with common YANG modules") |
Michal Vasko | d8951c7 | 2022-09-26 09:39:29 +0200 | [diff] [blame] | 101 | set(CALL_HOME_BACKOFF_WAIT 2 CACHE STRING "Number of seconds to wait between Call Home connection attempts") |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 102 | |
Michal Vasko | 2cd7163 | 2021-06-04 12:03:12 +0200 | [diff] [blame] | 103 | # |
| 104 | # sources |
| 105 | # |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 106 | set(libsrc |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 107 | src/io.c |
| 108 | src/log.c |
| 109 | src/messages_client.c |
| 110 | src/messages_server.c |
| 111 | src/session.c |
| 112 | src/session_client.c |
Michal Vasko | d7fb6df | 2021-05-19 11:27:35 +0200 | [diff] [blame] | 113 | src/session_server.c) |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 114 | |
Michal Vasko | fb2fb76 | 2015-10-27 11:44:32 +0100 | [diff] [blame] | 115 | if(ENABLE_SSH) |
Claus Klein | 2209191 | 2020-01-20 13:45:47 +0100 | [diff] [blame] | 116 | list(APPEND libsrc |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 117 | src/session_client_ssh.c |
| 118 | src/session_server_ssh.c) |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 119 | 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] | 120 | endif() |
| 121 | |
Radek Krejci | 9f03b48 | 2015-10-22 16:02:10 +0200 | [diff] [blame] | 122 | if(ENABLE_TLS) |
Claus Klein | 2209191 | 2020-01-20 13:45:47 +0100 | [diff] [blame] | 123 | list(APPEND libsrc |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 124 | src/session_client_tls.c |
| 125 | src/session_server_tls.c) |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 126 | 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] | 127 | endif() |
| 128 | |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 129 | set(headers |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 130 | src/log.h |
| 131 | src/netconf.h |
| 132 | src/session.h |
| 133 | src/messages_client.h |
| 134 | src/messages_server.h |
| 135 | src/session_client.h |
Michal Vasko | 45f298f | 2016-01-29 10:26:26 +0100 | [diff] [blame] | 136 | src/session_client_ch.h |
| 137 | src/session_server.h |
| 138 | src/session_server_ch.h) |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 139 | |
Michal Vasko | 5eb648d | 2021-05-26 09:11:52 +0200 | [diff] [blame] | 140 | # files to generate doxygen from |
| 141 | set(doxy_files |
| 142 | src/libnetconf.h |
| 143 | src/log.h |
| 144 | src/netconf.h |
| 145 | src/session.h |
| 146 | src/messages_client.h |
| 147 | src/messages_server.h |
| 148 | src/session_client.h |
| 149 | src/session_client_ch.h |
| 150 | src/session_server.h |
| 151 | src/session_server_ch.h) |
| 152 | |
Michal Vasko | b0e3ec4 | 2021-05-26 09:48:31 +0200 | [diff] [blame] | 153 | # source files to be covered by the 'format' target |
| 154 | set(format_sources |
| 155 | compat/*.c |
| 156 | compat/*.h* |
Roman Janota | 907cf93 | 2022-06-03 12:33:34 +0200 | [diff] [blame] | 157 | examples/*.c |
| 158 | examples/*.h* |
Michal Vasko | b0e3ec4 | 2021-05-26 09:48:31 +0200 | [diff] [blame] | 159 | src/*.c |
| 160 | src/*.h |
| 161 | tests/*.c |
roman | 41a11e4 | 2022-06-22 09:27:08 +0200 | [diff] [blame] | 162 | tests/client/*.c |
| 163 | tests/pam/*.c) |
Michal Vasko | b0e3ec4 | 2021-05-26 09:48:31 +0200 | [diff] [blame] | 164 | |
Michal Vasko | 2cd7163 | 2021-06-04 12:03:12 +0200 | [diff] [blame] | 165 | # |
| 166 | # checks |
| 167 | # |
| 168 | if(ENABLE_DNSSEC AND NOT ENABLE_SSH) |
| 169 | message(WARNING "DNSSEC SSHFP retrieval cannot be used without SSH support.") |
| 170 | set(ENABLE_DNSSEC OFF) |
| 171 | endif() |
| 172 | |
| 173 | if(ENABLE_VALGRIND_TESTS) |
| 174 | find_program(VALGRIND_FOUND valgrind) |
| 175 | if(NOT VALGRIND_FOUND) |
| 176 | message(WARNING "valgrind executable not found! Disabling memory leaks tests.") |
| 177 | set(ENABLE_VALGRIND_TESTS OFF) |
| 178 | else() |
| 179 | set(ENABLE_TESTS ON) |
| 180 | endif() |
| 181 | endif() |
| 182 | |
| 183 | if(ENABLE_TESTS) |
Michal Vasko | 1f439d4 | 2021-10-07 09:27:15 +0200 | [diff] [blame] | 184 | find_package(CMocka 1.0.1) |
Michal Vasko | 2cd7163 | 2021-06-04 12:03:12 +0200 | [diff] [blame] | 185 | if(NOT CMOCKA_FOUND) |
| 186 | message(STATUS "Disabling tests because of missing CMocka") |
| 187 | set(ENABLE_TESTS OFF) |
| 188 | endif() |
| 189 | endif() |
| 190 | |
| 191 | if(ENABLE_COVERAGE) |
| 192 | gen_coverage_enable(${ENABLE_TESTS}) |
| 193 | endif() |
| 194 | |
| 195 | if ("${BUILD_TYPE_UPPER}" STREQUAL "DEBUG") |
Michal Vasko | 6ce8e82 | 2022-08-02 15:09:17 +0200 | [diff] [blame] | 196 | source_format_enable(0.75) |
Michal Vasko | 2cd7163 | 2021-06-04 12:03:12 +0200 | [diff] [blame] | 197 | endif() |
| 198 | |
Radek Krejci | 0a14da0 | 2021-05-24 22:27:28 +0200 | [diff] [blame] | 199 | if("${BUILD_TYPE_UPPER}" STREQUAL "DOCONLY") |
Michal Vasko | 4e6d324 | 2021-05-26 09:13:24 +0200 | [diff] [blame] | 200 | gen_doc("${doxy_files}" ${LIBNETCONF2_VERSION} ${LIBNETCONF2_DESCRIPTION} "") |
Radek Krejci | 0a14da0 | 2021-05-24 22:27:28 +0200 | [diff] [blame] | 201 | return() |
| 202 | endif() |
| 203 | |
Michal Vasko | 2cd7163 | 2021-06-04 12:03:12 +0200 | [diff] [blame] | 204 | # |
| 205 | # targets |
| 206 | # |
| 207 | |
Michal Vasko | 9e8ac26 | 2020-04-07 13:06:45 +0200 | [diff] [blame] | 208 | # use compat |
| 209 | use_compat() |
| 210 | |
Claus Klein | 2209191 | 2020-01-20 13:45:47 +0100 | [diff] [blame] | 211 | # netconf2 target |
Michal Vasko | 7a20d2e | 2021-05-19 16:40:23 +0200 | [diff] [blame] | 212 | add_library(netconf2 SHARED ${libsrc} ${compatsrc}) |
Michal Vasko | d853655 | 2020-04-21 14:41:16 +0200 | [diff] [blame] | 213 | set_target_properties(netconf2 PROPERTIES VERSION ${LIBNETCONF2_SOVERSION_FULL} SOVERSION ${LIBNETCONF2_SOVERSION}) |
Radek Krejci | 4f2d40d | 2015-10-08 12:55:01 +0200 | [diff] [blame] | 214 | |
Michal Vasko | 5eb648d | 2021-05-26 09:11:52 +0200 | [diff] [blame] | 215 | # include repository files with highest priority |
| 216 | include_directories(${PROJECT_BINARY_DIR}/src) |
Radek Krejci | ce24ab8 | 2015-10-08 15:37:02 +0200 | [diff] [blame] | 217 | |
Radek Krejci | 32898d5 | 2016-07-14 17:37:02 +0200 | [diff] [blame] | 218 | # dependencies - pthread |
Michal Vasko | 73ed967 | 2016-01-29 13:15:15 +0100 | [diff] [blame] | 219 | set(CMAKE_THREAD_PREFER_PTHREAD TRUE) |
| 220 | find_package(Threads REQUIRED) |
| 221 | target_link_libraries(netconf2 ${CMAKE_THREAD_LIBS_INIT}) |
| 222 | |
Radek Krejci | 2847292 | 2016-07-15 11:51:16 +0200 | [diff] [blame] | 223 | # check availability for some pthread functions |
Radek Krejci | 32898d5 | 2016-07-14 17:37:02 +0200 | [diff] [blame] | 224 | set(CMAKE_REQUIRED_LIBRARIES pthread) |
Rosen Penev | ef2f3ac | 2019-07-15 18:15:28 -0700 | [diff] [blame] | 225 | check_function_exists(pthread_rwlockattr_setkind_np HAVE_PTHREAD_RWLOCKATTR_SETKIND_NP) |
Radek Krejci | 32898d5 | 2016-07-14 17:37:02 +0200 | [diff] [blame] | 226 | |
Radek Krejci | 4f2d40d | 2015-10-08 12:55:01 +0200 | [diff] [blame] | 227 | # dependencies - openssl |
Radek Krejci | 5c69cdf | 2017-05-26 16:29:29 +0200 | [diff] [blame] | 228 | if(ENABLE_TLS OR ENABLE_DNSSEC OR ENABLE_SSH) |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 229 | find_package(OpenSSL REQUIRED) |
Claus Klein | 2209191 | 2020-01-20 13:45:47 +0100 | [diff] [blame] | 230 | if(ENABLE_TLS) |
Michal Vasko | d287197 | 2021-09-14 11:59:00 +0200 | [diff] [blame] | 231 | message(STATUS "OpenSSL found, required for TLS") |
Michal Vasko | 5eb648d | 2021-05-26 09:11:52 +0200 | [diff] [blame] | 232 | set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DNC_ENABLED_TLS") |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 233 | endif() |
Michal Vasko | d287197 | 2021-09-14 11:59:00 +0200 | [diff] [blame] | 234 | if(OPENSSL_VERSION VERSION_LESS 1.1.1) |
| 235 | message(WARNING "OpenSSL version ${OPENSSL_VERSION} is no longer maintained, consider an update.") |
| 236 | endif() |
Claus Klein | 2209191 | 2020-01-20 13:45:47 +0100 | [diff] [blame] | 237 | |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 238 | target_link_libraries(netconf2 ${OPENSSL_LIBRARIES}) |
| 239 | include_directories(${OPENSSL_INCLUDE_DIR}) |
| 240 | endif() |
| 241 | |
Michal Vasko | 474d373 | 2017-09-27 13:57:00 +0200 | [diff] [blame] | 242 | # dependencies - libssh |
| 243 | if(ENABLE_SSH) |
Michal Vasko | 819598b | 2020-07-29 10:05:11 +0200 | [diff] [blame] | 244 | find_package(LibSSH 0.7.1 REQUIRED) |
Michal Vasko | ed4a452 | 2020-05-19 16:46:12 +0200 | [diff] [blame] | 245 | if(LIBSSH_VERSION VERSION_EQUAL 0.9.3 OR LIBSSH_VERSION VERSION_EQUAL 0.9.4) |
| 246 | 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] | 247 | endif() |
Claus Klein | 2209191 | 2020-01-20 13:45:47 +0100 | [diff] [blame] | 248 | |
Michal Vasko | ed4a452 | 2020-05-19 16:46:12 +0200 | [diff] [blame] | 249 | target_link_libraries(netconf2 ${LIBSSH_LIBRARIES}) |
| 250 | list(APPEND CMAKE_REQUIRED_LIBRARIES ${LIBSSH_LIBRARIES}) |
Michal Vasko | 474d373 | 2017-09-27 13:57:00 +0200 | [diff] [blame] | 251 | include_directories(${LIBSSH_INCLUDE_DIRS}) |
Michal Vasko | 5eb648d | 2021-05-26 09:11:52 +0200 | [diff] [blame] | 252 | set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DNC_ENABLED_SSH") |
Michal Vasko | 71514b3 | 2020-04-07 13:36:51 +0200 | [diff] [blame] | 253 | |
| 254 | # crypt |
Michal Vasko | 1835194 | 2022-08-22 14:58:17 +0200 | [diff] [blame] | 255 | if(${CMAKE_SYSTEM_NAME} MATCHES "QNX") |
apropp-molex | 4e903c3 | 2020-04-20 03:06:58 -0400 | [diff] [blame] | 256 | target_link_libraries(netconf2 -llogin) |
| 257 | list(APPEND CMAKE_REQUIRED_LIBRARIES login) |
Michal Vasko | 1835194 | 2022-08-22 14:58:17 +0200 | [diff] [blame] | 258 | elseif(NOT APPLE) |
| 259 | target_link_libraries(netconf2 -lcrypt) |
| 260 | list(APPEND CMAKE_REQUIRED_LIBRARIES crypt) |
apropp-molex | 4e903c3 | 2020-04-20 03:06:58 -0400 | [diff] [blame] | 261 | endif() |
roman | 41a11e4 | 2022-06-22 09:27:08 +0200 | [diff] [blame] | 262 | |
| 263 | # libpam |
Michal Vasko | 0d81c57 | 2022-09-26 10:39:31 +0200 | [diff] [blame] | 264 | find_package(LibPAM) |
| 265 | if(LibPAM_FOUND) |
| 266 | set(HAVE_LIBPAM TRUE) |
roman | 41a11e4 | 2022-06-22 09:27:08 +0200 | [diff] [blame] | 267 | |
Michal Vasko | 0d81c57 | 2022-09-26 10:39:31 +0200 | [diff] [blame] | 268 | # enable PAM test if a PAM header file contains a declaration of a function pam_start_confdir |
| 269 | if (LIBPAM_HAVE_CONFDIR) |
| 270 | message(STATUS "LibPAM found, version >= 1.4, enabled PAM tests") |
| 271 | else() |
| 272 | message(STATUS "LibPAM found, version < 1.4, disabled PAM tests") |
| 273 | endif() |
| 274 | |
| 275 | target_link_libraries(netconf2 ${LIBPAM_LIBRARIES}) |
| 276 | list(APPEND CMAKE_REQUIRED_LIBRARIES ${LIBPAM_LIBRARIES}) |
| 277 | include_directories(${LIBPAM_INCLUDE_DIRS}) |
roman | 41a11e4 | 2022-06-22 09:27:08 +0200 | [diff] [blame] | 278 | else() |
Michal Vasko | 0d81c57 | 2022-09-26 10:39:31 +0200 | [diff] [blame] | 279 | message(WARNING "LibPAM not found, PAM-based keyboard-interactive SSH server authentication method is disabled") |
roman | 41a11e4 | 2022-06-22 09:27:08 +0200 | [diff] [blame] | 280 | endif() |
Michal Vasko | 474d373 | 2017-09-27 13:57:00 +0200 | [diff] [blame] | 281 | endif() |
| 282 | |
Michal Vasko | 73ed967 | 2016-01-29 13:15:15 +0100 | [diff] [blame] | 283 | # dependencies - libval |
Claus Klein | 2209191 | 2020-01-20 13:45:47 +0100 | [diff] [blame] | 284 | if(ENABLE_DNSSEC) |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 285 | find_package(LibVAL REQUIRED) |
Michal Vasko | 5eb648d | 2021-05-26 09:11:52 +0200 | [diff] [blame] | 286 | set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DENABLE_DNSSEC") |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 287 | target_link_libraries(netconf2 ${LIBVAL_LIBRARIES}) |
| 288 | include_directories(${LIBVAL_INCLUDE_DIRS}) |
Radek Krejci | 4f2d40d | 2015-10-08 12:55:01 +0200 | [diff] [blame] | 289 | endif() |
| 290 | |
| 291 | # dependencies - libyang |
Michal Vasko | a50f68e | 2022-02-24 16:10:54 +0100 | [diff] [blame] | 292 | find_package(LibYANG ${LIBYANG_DEP_SOVERSION} REQUIRED) |
Radek Krejci | 4f2d40d | 2015-10-08 12:55:01 +0200 | [diff] [blame] | 293 | target_link_libraries(netconf2 ${LIBYANG_LIBRARIES}) |
| 294 | include_directories(${LIBYANG_INCLUDE_DIRS}) |
| 295 | |
apropp-molex | 4e903c3 | 2020-04-20 03:06:58 -0400 | [diff] [blame] | 296 | # header file compatibility - shadow.h and crypt.h |
| 297 | check_include_file("shadow.h" HAVE_SHADOW) |
| 298 | check_include_file("crypt.h" HAVE_CRYPT) |
| 299 | |
| 300 | # function compatibility - getpeereid on QNX |
| 301 | if(${CMAKE_SYSTEM_NAME} MATCHES "QNX") |
| 302 | target_link_libraries(netconf2 -lsocket) |
| 303 | list(APPEND CMAKE_REQUIRED_LIBRARIES socket) |
| 304 | list(REMOVE_ITEM CMAKE_REQUIRED_LIBRARIES pthread) |
| 305 | list(APPEND CMAKE_REQUIRED_DEFINITIONS -D_QNX_SOURCE) |
| 306 | check_symbol_exists(getpeereid "sys/types.h;unistd.h" HAVE_GETPEEREID) |
| 307 | list(REMOVE_ITEM CMAKE_REQUIRED_DEFINITIONS -D_QNX_SOURCE) |
| 308 | endif() |
| 309 | |
Michal Vasko | 5eb648d | 2021-05-26 09:11:52 +0200 | [diff] [blame] | 310 | # generate files |
| 311 | configure_file("${PROJECT_SOURCE_DIR}/src/config.h.in" "${PROJECT_BINARY_DIR}/src/config.h" ESCAPE_QUOTES @ONLY) |
| 312 | configure_file(nc_client.h.in nc_client.h) |
| 313 | configure_file(nc_server.h.in nc_server.h) |
Michal Vasko | a20332f | 2021-11-09 12:41:21 +0100 | [diff] [blame] | 314 | configure_file(nc_version.h.in nc_version.h) |
Michal Vasko | 5eb648d | 2021-05-26 09:11:52 +0200 | [diff] [blame] | 315 | |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 316 | # install library |
Jan Kundrát | b78cdfc | 2016-11-04 17:11:24 +0100 | [diff] [blame] | 317 | install(TARGETS netconf2 DESTINATION ${CMAKE_INSTALL_LIBDIR}) |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 318 | |
| 319 | # install headers |
Jan Kundrát | b78cdfc | 2016-11-04 17:11:24 +0100 | [diff] [blame] | 320 | install(FILES ${CMAKE_CURRENT_BINARY_DIR}/nc_client.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}) |
| 321 | install(FILES ${CMAKE_CURRENT_BINARY_DIR}/nc_server.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}) |
Michal Vasko | a20332f | 2021-11-09 12:41:21 +0100 | [diff] [blame] | 322 | install(FILES ${CMAKE_CURRENT_BINARY_DIR}/nc_version.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}) |
Michal Vasko | e740214 | 2021-05-26 13:45:43 +0200 | [diff] [blame] | 323 | 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] | 324 | |
Michal Vasko | 6779d18 | 2016-02-17 14:36:36 +0100 | [diff] [blame] | 325 | # install pkg-config file |
| 326 | find_package(PkgConfig) |
| 327 | if(PKG_CONFIG_FOUND) |
| 328 | configure_file("libnetconf2.pc.in" "libnetconf2.pc" @ONLY) |
Jan Kundrát | b78cdfc | 2016-11-04 17:11:24 +0100 | [diff] [blame] | 329 | 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] | 330 | # check that pkg-config includes the used path |
| 331 | execute_process(COMMAND ${PKG_CONFIG_EXECUTABLE} --variable pc_path pkg-config RESULT_VARIABLE RETURN OUTPUT_VARIABLE PC_PATH ERROR_QUIET) |
| 332 | if(RETURN EQUAL 0) |
Jan Kundrát | b78cdfc | 2016-11-04 17:11:24 +0100 | [diff] [blame] | 333 | string(REGEX MATCH "${CMAKE_INSTALL_LIBDIR}/pkgconfig" SUBSTR "${PC_PATH}") |
Michal Vasko | 6779d18 | 2016-02-17 14:36:36 +0100 | [diff] [blame] | 334 | string(LENGTH "${SUBSTR}" SUBSTR_LEN) |
| 335 | if(SUBSTR_LEN EQUAL 0) |
Jan Kundrát | b78cdfc | 2016-11-04 17:11:24 +0100 | [diff] [blame] | 336 | 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] | 337 | endif() |
| 338 | endif() |
| 339 | endif() |
| 340 | |
Roman Janota | 907cf93 | 2022-06-03 12:33:34 +0200 | [diff] [blame] | 341 | # examples |
| 342 | if(ENABLE_EXAMPLES) |
| 343 | if(NOT ENABLE_SSH) |
| 344 | message(WARNING "Examples will not be compiled because SSH is disabled.") |
| 345 | else() |
| 346 | add_subdirectory(examples) |
| 347 | endif() |
| 348 | endif() |
| 349 | |
Michal Vasko | 2cd7163 | 2021-06-04 12:03:12 +0200 | [diff] [blame] | 350 | # tests |
| 351 | if(ENABLE_TESTS) |
| 352 | enable_testing() |
| 353 | add_subdirectory(tests) |
Michal Vasko | b0e3ec4 | 2021-05-26 09:48:31 +0200 | [diff] [blame] | 354 | endif() |
| 355 | |
Michal Vasko | 2cd7163 | 2021-06-04 12:03:12 +0200 | [diff] [blame] | 356 | # create coverage target for generating coverage reports |
| 357 | gen_coverage("test_.*" "test_.*_valgrind") |
Radek Krejci | ce24ab8 | 2015-10-08 15:37:02 +0200 | [diff] [blame] | 358 | |
Michal Vasko | b0e3ec4 | 2021-05-26 09:48:31 +0200 | [diff] [blame] | 359 | # generate doxygen documentation for libnetconf2 API |
| 360 | gen_doc("${doxy_files}" ${LIBNETCONF2_VERSION} ${LIBNETCONF2_DESCRIPTION} "") |
| 361 | |
Michal Vasko | e740214 | 2021-05-26 13:45:43 +0200 | [diff] [blame] | 362 | # generate API/ABI report |
| 363 | if ("${BUILD_TYPE_UPPER}" STREQUAL "ABICHECK") |
Michal Vasko | 53ab410 | 2022-10-20 09:08:22 +0200 | [diff] [blame] | 364 | lib_abi_check(netconf2 "${headers}" ${LIBNETCONF2_SOVERSION_FULL} ffb35e9e5b58d0bffb15c0c2efc46a888d4c10b1) |
Michal Vasko | e740214 | 2021-05-26 13:45:43 +0200 | [diff] [blame] | 365 | endif() |
| 366 | |
Michal Vasko | 2cd7163 | 2021-06-04 12:03:12 +0200 | [diff] [blame] | 367 | # source files to be covered by the 'format' target and a test with 'format-check' target |
| 368 | source_format(${format_sources}) |
| 369 | |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 370 | # clean cmake cache |
| 371 | add_custom_target(cleancache |
| 372 | COMMAND make clean |
| 373 | COMMAND find . -iname '*cmake*' -not -name CMakeLists.txt -exec rm -rf {} + |
| 374 | COMMAND rm -rf Makefile Doxyfile |
| 375 | WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}) |
Bi-Ruei, Chiu | f5faf83 | 2019-09-21 20:15:59 +0800 | [diff] [blame] | 376 | |
| 377 | # uninstall |
| 378 | add_custom_target(uninstall "${CMAKE_COMMAND}" -P "${CMAKE_MODULE_PATH}/uninstall.cmake") |