Michal Vasko | e1d80bd | 2024-01-31 11:21:11 +0100 | [diff] [blame] | 1 | cmake_minimum_required(VERSION 3.5...3.28.1) |
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 |
Michal Vasko | fe6959c | 2024-04-25 14:04:33 +0200 | [diff] [blame] | 6 | list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/CMakeModules/") |
Michal Vasko | 9e8ac26 | 2020-04-07 13:06:45 +0200 | [diff] [blame] | 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 | |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 22 | # set default build type if not specified by user |
| 23 | if(NOT CMAKE_BUILD_TYPE) |
Claus Klein | 2209191 | 2020-01-20 13:45:47 +0100 | [diff] [blame] | 24 | set(CMAKE_BUILD_TYPE Debug) |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 25 | endif() |
Jan Kundrát | 1d54fce | 2021-10-08 19:48:19 +0200 | [diff] [blame] | 26 | # 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] | 27 | # normalize build type string |
| 28 | string(TOUPPER "${CMAKE_BUILD_TYPE}" BUILD_TYPE_UPPER) |
| 29 | if ("${BUILD_TYPE_UPPER}" STREQUAL "RELEASE") |
Michal Vasko | e740214 | 2021-05-26 13:45:43 +0200 | [diff] [blame] | 30 | set(CMAKE_BUILD_TYPE "Release" CACHE STRING "Build Type" FORCE) |
Jan Kundrát | 1d54fce | 2021-10-08 19:48:19 +0200 | [diff] [blame] | 31 | set(CMAKE_C_FLAGS "-DNDEBUG -O2 ${CMAKE_C_FLAGS}") |
Michal Vasko | e740214 | 2021-05-26 13:45:43 +0200 | [diff] [blame] | 32 | elseif("${BUILD_TYPE_UPPER}" STREQUAL "DEBUG") |
| 33 | set(CMAKE_BUILD_TYPE "Debug" CACHE STRING "Build Type" FORCE) |
Jan Kundrát | 1d54fce | 2021-10-08 19:48:19 +0200 | [diff] [blame] | 34 | set(CMAKE_C_FLAGS "-g -O0 ${CMAKE_C_FLAGS}") |
Michal Vasko | e740214 | 2021-05-26 13:45:43 +0200 | [diff] [blame] | 35 | elseif("${BUILD_TYPE_UPPER}" STREQUAL "RELWITHDEBINFO") |
| 36 | set(CMAKE_BUILD_TYPE "RelWithDebInfo" CACHE STRING "Build Type" FORCE) |
| 37 | elseif("${BUILD_TYPE_UPPER}" STREQUAL "RELWITHDEBUG") |
| 38 | set(CMAKE_BUILD_TYPE "RelWithDebug" CACHE STRING "Build Type" FORCE) |
| 39 | elseif("${BUILD_TYPE_UPPER}" STREQUAL "ABICHECK") |
| 40 | set(CMAKE_BUILD_TYPE "ABICheck" CACHE STRING "Build Type" FORCE) |
Jan Kundrát | 1d54fce | 2021-10-08 19:48:19 +0200 | [diff] [blame] | 41 | set(CMAKE_C_FLAGS "-g -Og ${CMAKE_C_FLAGS}") |
Michal Vasko | e740214 | 2021-05-26 13:45:43 +0200 | [diff] [blame] | 42 | elseif("${BUILD_TYPE_UPPER}" STREQUAL "DOCONLY") |
| 43 | set(CMAKE_BUILD_TYPE "DocOnly" CACHE STRING "Build Type" FORCE) |
Radek Krejci | 97e3787 | 2021-05-24 22:16:37 +0200 | [diff] [blame] | 44 | endif() |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 45 | |
Michal Vasko | 2850dfd | 2024-04-25 14:05:13 +0200 | [diff] [blame] | 46 | # |
| 47 | # variables |
| 48 | # |
| 49 | |
| 50 | set(LIBNETCONF2_DESCRIPTION "NETCONF server and client library in C.") |
| 51 | |
| 52 | # osx specific |
| 53 | set(CMAKE_MACOSX_RPATH TRUE) |
| 54 | |
Michal Vasko | 08d5cde | 2019-07-10 14:34:55 +0200 | [diff] [blame] | 55 | # Version of the project |
| 56 | # Generic version of not only the library. Major version is reserved for really big changes of the project, |
| 57 | # minor version changes with added functionality (new tool, functionality of the tool or library, ...) and |
| 58 | # micro version is changed with a set of small changes or bugfixes anywhere in the project. |
roman | 20312cf | 2023-10-19 09:55:30 +0200 | [diff] [blame] | 59 | set(LIBNETCONF2_MAJOR_VERSION 3) |
| 60 | set(LIBNETCONF2_MINOR_VERSION 0) |
Michal Vasko | 0ca2163 | 2024-05-13 09:45:55 +0200 | [diff] [blame] | 61 | set(LIBNETCONF2_MICRO_VERSION 22) |
Radek Krejci | 4f2d40d | 2015-10-08 12:55:01 +0200 | [diff] [blame] | 62 | set(LIBNETCONF2_VERSION ${LIBNETCONF2_MAJOR_VERSION}.${LIBNETCONF2_MINOR_VERSION}.${LIBNETCONF2_MICRO_VERSION}) |
Michal Vasko | 08d5cde | 2019-07-10 14:34:55 +0200 | [diff] [blame] | 63 | |
| 64 | # Version of the library |
| 65 | # Major version is changed with every backward non-compatible API/ABI change in libyang, minor version changes |
| 66 | # with backward compatible change and micro version is connected with any internal change of the library. |
roman | 2738799 | 2023-10-19 09:55:00 +0200 | [diff] [blame] | 67 | set(LIBNETCONF2_MAJOR_SOVERSION 4) |
Roytak | 3a7bfeb | 2023-12-06 11:04:02 +0100 | [diff] [blame] | 68 | set(LIBNETCONF2_MINOR_SOVERSION 1) |
Michal Vasko | d15e8ac | 2024-05-13 09:45:45 +0200 | [diff] [blame] | 69 | set(LIBNETCONF2_MICRO_SOVERSION 19) |
Michal Vasko | 08d5cde | 2019-07-10 14:34:55 +0200 | [diff] [blame] | 70 | set(LIBNETCONF2_SOVERSION_FULL ${LIBNETCONF2_MAJOR_SOVERSION}.${LIBNETCONF2_MINOR_SOVERSION}.${LIBNETCONF2_MICRO_SOVERSION}) |
| 71 | set(LIBNETCONF2_SOVERSION ${LIBNETCONF2_MAJOR_SOVERSION}) |
Radek Krejci | 4f2d40d | 2015-10-08 12:55:01 +0200 | [diff] [blame] | 72 | |
Michal Vasko | a50f68e | 2022-02-24 16:10:54 +0100 | [diff] [blame] | 73 | # Version of libyang library that this project depends on |
Michal Vasko | 58791da | 2024-02-26 13:52:59 +0100 | [diff] [blame] | 74 | set(LIBYANG_DEP_VERSION 2.0.0) |
| 75 | set(LIBYANG_DEP_SOVERSION 3.0.0) |
| 76 | set(LIBYANG_DEP_SOVERSION_MAJOR 3) |
Michal Vasko | 819598b | 2020-07-29 10:05:11 +0200 | [diff] [blame] | 77 | |
Michal Vasko | 2850dfd | 2024-04-25 14:05:13 +0200 | [diff] [blame] | 78 | # global C flags |
Michal Vasko | ba9f358 | 2023-02-22 10:26:32 +0100 | [diff] [blame] | 79 | set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -fvisibility=hidden -std=c99") |
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) |
roman | 2eab474 | 2023-06-06 10:00:26 +0200 | [diff] [blame] | 93 | option(ENABLE_SSH_TLS "Enable NETCONF over SSH and TLS support (via libssh and OpenSSL)" ON) |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 94 | option(ENABLE_DNSSEC "Enable support for SSHFP retrieval using DNSSEC for SSH (requires OpenSSL and libval)" OFF) |
Michal Vasko | 51f8700 | 2024-04-25 14:06:32 +0200 | [diff] [blame] | 95 | option(ENABLE_COMMON_TARGETS "Define common custom target names such as 'doc' or 'uninstall', may cause conflicts when using add_subdirectory() to build this project" ON) |
Michal Vasko | f03d01d | 2024-04-25 14:05:54 +0200 | [diff] [blame] | 96 | option(BUILD_SHARED_LIBS "By default, shared libs are enabled. Turn off for a static build." ON) |
Michal Vasko | f471fa0 | 2017-02-15 10:48:12 +0100 | [diff] [blame] | 97 | set(READ_INACTIVE_TIMEOUT 20 CACHE STRING "Maximum number of seconds waiting for new data once some data have arrived") |
| 98 | set(READ_ACTIVE_TIMEOUT 300 CACHE STRING "Maximum number of seconds for receiving a full message") |
| 99 | 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] | 100 | set(TIMEOUT_STEP 100 CACHE STRING "Number of microseconds tasks are repeated until timeout elapses") |
Michal Vasko | 8b8b6bd | 2022-12-12 07:37:16 +0100 | [diff] [blame] | 101 | set(YANG_MODULE_DIR "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_DATADIR}/yang/modules/libnetconf2" CACHE STRING "Directory where to copy the YANG modules to") |
Michal Vasko | 8022722 | 2022-12-12 09:05:24 +0100 | [diff] [blame] | 102 | set(CLIENT_SEARCH_DIR "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_DATADIR}/yang/modules" CACHE STRING "Default NC client YANG module search directory") |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 103 | |
Michal Vasko | 2cd7163 | 2021-06-04 12:03:12 +0200 | [diff] [blame] | 104 | # |
| 105 | # sources |
| 106 | # |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 107 | set(libsrc |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 108 | src/io.c |
| 109 | src/log.c |
| 110 | src/messages_client.c |
| 111 | src/messages_server.c |
| 112 | src/session.c |
| 113 | src/session_client.c |
roman | c1d2b09 | 2023-02-02 08:58:27 +0100 | [diff] [blame] | 114 | src/session_server.c |
roman | 2721524 | 2023-03-10 14:55:00 +0100 | [diff] [blame] | 115 | src/server_config.c |
Roytak | b279485 | 2023-10-18 14:30:22 +0200 | [diff] [blame] | 116 | src/server_config_util.c) |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 117 | |
roman | 2eab474 | 2023-06-06 10:00:26 +0200 | [diff] [blame] | 118 | if(ENABLE_SSH_TLS) |
Claus Klein | 2209191 | 2020-01-20 13:45:47 +0100 | [diff] [blame] | 119 | list(APPEND libsrc |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 120 | src/session_client_ssh.c |
roman | 3f9b65c | 2023-06-05 14:26:58 +0200 | [diff] [blame] | 121 | src/session_server_ssh.c |
Roytak | b279485 | 2023-10-18 14:30:22 +0200 | [diff] [blame] | 122 | src/server_config_util_ssh.c |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 123 | src/session_client_tls.c |
roman | 3f9b65c | 2023-06-05 14:26:58 +0200 | [diff] [blame] | 124 | src/session_server_tls.c |
Roytak | b279485 | 2023-10-18 14:30:22 +0200 | [diff] [blame] | 125 | src/server_config_util_tls.c |
roman | 2eab474 | 2023-06-06 10:00:26 +0200 | [diff] [blame] | 126 | src/server_config_ks.c |
roman | 474b0c9 | 2024-04-23 15:05:50 +0200 | [diff] [blame] | 127 | src/server_config_ts.c) |
roman | 2eab474 | 2023-06-06 10:00:26 +0200 | [diff] [blame] | 128 | set(SSH_TLS_MACRO "#ifndef NC_ENABLED_SSH_TLS\n#define NC_ENABLED_SSH_TLS\n#endif") |
Radek Krejci | 9f03b48 | 2015-10-22 16:02:10 +0200 | [diff] [blame] | 129 | endif() |
| 130 | |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 131 | set(headers |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 132 | src/log.h |
| 133 | src/netconf.h |
| 134 | src/session.h |
| 135 | src/messages_client.h |
| 136 | src/messages_server.h |
| 137 | src/session_client.h |
Michal Vasko | 45f298f | 2016-01-29 10:26:26 +0100 | [diff] [blame] | 138 | src/session_client_ch.h |
| 139 | src/session_server.h |
roman | c1d2b09 | 2023-02-02 08:58:27 +0100 | [diff] [blame] | 140 | src/session_server_ch.h |
roman | 9b1379c | 2023-03-31 10:11:10 +0200 | [diff] [blame] | 141 | src/server_config.h) |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 142 | |
Michal Vasko | 5eb648d | 2021-05-26 09:11:52 +0200 | [diff] [blame] | 143 | # files to generate doxygen from |
| 144 | set(doxy_files |
roman | 3f9b65c | 2023-06-05 14:26:58 +0200 | [diff] [blame] | 145 | doc/libnetconf.doc |
Michal Vasko | 5eb648d | 2021-05-26 09:11:52 +0200 | [diff] [blame] | 146 | src/log.h |
| 147 | src/netconf.h |
| 148 | src/session.h |
| 149 | src/messages_client.h |
| 150 | src/messages_server.h |
| 151 | src/session_client.h |
| 152 | src/session_client_ch.h |
| 153 | src/session_server.h |
roman | 9b1379c | 2023-03-31 10:11:10 +0200 | [diff] [blame] | 154 | src/session_server_ch.h |
| 155 | src/server_config.h) |
Michal Vasko | 5eb648d | 2021-05-26 09:11:52 +0200 | [diff] [blame] | 156 | |
Michal Vasko | b0e3ec4 | 2021-05-26 09:48:31 +0200 | [diff] [blame] | 157 | # source files to be covered by the 'format' target |
| 158 | set(format_sources |
| 159 | compat/*.c |
| 160 | compat/*.h* |
Roman Janota | 907cf93 | 2022-06-03 12:33:34 +0200 | [diff] [blame] | 161 | examples/*.c |
| 162 | examples/*.h* |
Michal Vasko | b0e3ec4 | 2021-05-26 09:48:31 +0200 | [diff] [blame] | 163 | src/*.c |
| 164 | src/*.h |
roman | 808f3f6 | 2023-11-23 16:01:04 +0100 | [diff] [blame] | 165 | tests/*.c) |
Michal Vasko | b0e3ec4 | 2021-05-26 09:48:31 +0200 | [diff] [blame] | 166 | |
Michal Vasko | 2cd7163 | 2021-06-04 12:03:12 +0200 | [diff] [blame] | 167 | # |
| 168 | # checks |
| 169 | # |
roman | 2eab474 | 2023-06-06 10:00:26 +0200 | [diff] [blame] | 170 | if(ENABLE_DNSSEC AND NOT ENABLE_SSH_TLS) |
Michal Vasko | 2cd7163 | 2021-06-04 12:03:12 +0200 | [diff] [blame] | 171 | message(WARNING "DNSSEC SSHFP retrieval cannot be used without SSH support.") |
| 172 | set(ENABLE_DNSSEC OFF) |
| 173 | endif() |
| 174 | |
| 175 | if(ENABLE_VALGRIND_TESTS) |
| 176 | find_program(VALGRIND_FOUND valgrind) |
| 177 | if(NOT VALGRIND_FOUND) |
| 178 | message(WARNING "valgrind executable not found! Disabling memory leaks tests.") |
| 179 | set(ENABLE_VALGRIND_TESTS OFF) |
| 180 | else() |
| 181 | set(ENABLE_TESTS ON) |
| 182 | endif() |
| 183 | endif() |
| 184 | |
| 185 | if(ENABLE_TESTS) |
Michal Vasko | 1f439d4 | 2021-10-07 09:27:15 +0200 | [diff] [blame] | 186 | find_package(CMocka 1.0.1) |
Michal Vasko | 2cd7163 | 2021-06-04 12:03:12 +0200 | [diff] [blame] | 187 | if(NOT CMOCKA_FOUND) |
| 188 | message(STATUS "Disabling tests because of missing CMocka") |
| 189 | set(ENABLE_TESTS OFF) |
| 190 | endif() |
| 191 | endif() |
| 192 | |
| 193 | if(ENABLE_COVERAGE) |
| 194 | gen_coverage_enable(${ENABLE_TESTS}) |
| 195 | endif() |
| 196 | |
| 197 | if ("${BUILD_TYPE_UPPER}" STREQUAL "DEBUG") |
Michal Vasko | ac1786b | 2023-05-19 11:28:31 +0200 | [diff] [blame] | 198 | source_format_enable(0.77) |
Michal Vasko | 2cd7163 | 2021-06-04 12:03:12 +0200 | [diff] [blame] | 199 | endif() |
| 200 | |
Radek Krejci | 0a14da0 | 2021-05-24 22:27:28 +0200 | [diff] [blame] | 201 | if("${BUILD_TYPE_UPPER}" STREQUAL "DOCONLY") |
Michal Vasko | 4e6d324 | 2021-05-26 09:13:24 +0200 | [diff] [blame] | 202 | gen_doc("${doxy_files}" ${LIBNETCONF2_VERSION} ${LIBNETCONF2_DESCRIPTION} "") |
Radek Krejci | 0a14da0 | 2021-05-24 22:27:28 +0200 | [diff] [blame] | 203 | return() |
| 204 | endif() |
| 205 | |
Michal Vasko | 2cd7163 | 2021-06-04 12:03:12 +0200 | [diff] [blame] | 206 | # |
| 207 | # targets |
| 208 | # |
| 209 | |
Michal Vasko | 9e8ac26 | 2020-04-07 13:06:45 +0200 | [diff] [blame] | 210 | # use compat |
| 211 | use_compat() |
| 212 | |
roman | 474b0c9 | 2024-04-23 15:05:50 +0200 | [diff] [blame] | 213 | # netconf2 sourceless target - need it for linking libs, but the required sources will be added later |
| 214 | add_library(netconf2) |
| 215 | |
| 216 | # set the shared library version |
Michal Vasko | d853655 | 2020-04-21 14:41:16 +0200 | [diff] [blame] | 217 | set_target_properties(netconf2 PROPERTIES VERSION ${LIBNETCONF2_SOVERSION_FULL} SOVERSION ${LIBNETCONF2_SOVERSION}) |
Radek Krejci | 4f2d40d | 2015-10-08 12:55:01 +0200 | [diff] [blame] | 218 | |
Michal Vasko | 5eb648d | 2021-05-26 09:11:52 +0200 | [diff] [blame] | 219 | # include repository files with highest priority |
| 220 | include_directories(${PROJECT_BINARY_DIR}/src) |
Radek Krejci | ce24ab8 | 2015-10-08 15:37:02 +0200 | [diff] [blame] | 221 | |
Radek Krejci | 32898d5 | 2016-07-14 17:37:02 +0200 | [diff] [blame] | 222 | # dependencies - pthread |
Michal Vasko | 73ed967 | 2016-01-29 13:15:15 +0100 | [diff] [blame] | 223 | set(CMAKE_THREAD_PREFER_PTHREAD TRUE) |
| 224 | find_package(Threads REQUIRED) |
| 225 | target_link_libraries(netconf2 ${CMAKE_THREAD_LIBS_INIT}) |
| 226 | |
Radek Krejci | 2847292 | 2016-07-15 11:51:16 +0200 | [diff] [blame] | 227 | # check availability for some pthread functions |
Radek Krejci | 32898d5 | 2016-07-14 17:37:02 +0200 | [diff] [blame] | 228 | set(CMAKE_REQUIRED_LIBRARIES pthread) |
Rosen Penev | ef2f3ac | 2019-07-15 18:15:28 -0700 | [diff] [blame] | 229 | check_function_exists(pthread_rwlockattr_setkind_np HAVE_PTHREAD_RWLOCKATTR_SETKIND_NP) |
Radek Krejci | 32898d5 | 2016-07-14 17:37:02 +0200 | [diff] [blame] | 230 | |
Michal Vasko | 487ab80 | 2024-04-26 12:20:29 +0200 | [diff] [blame] | 231 | # header file compatibility |
roman | 5235298 | 2023-12-01 11:28:42 +0100 | [diff] [blame] | 232 | check_include_file("shadow.h" HAVE_SHADOW) |
Michal Vasko | 487ab80 | 2024-04-26 12:20:29 +0200 | [diff] [blame] | 233 | check_include_file("termios.h" HAVE_TERMIOS) |
roman | 5235298 | 2023-12-01 11:28:42 +0100 | [diff] [blame] | 234 | |
roman | 2eab474 | 2023-06-06 10:00:26 +0200 | [diff] [blame] | 235 | if(ENABLE_SSH_TLS) |
roman | 474b0c9 | 2024-04-23 15:05:50 +0200 | [diff] [blame] | 236 | # dependencies - mbedTLS (higher preference) or OpenSSL |
| 237 | find_package(LibMbedTLS 3.5.2) |
roman | 7bc27d4 | 2024-04-04 09:25:30 +0200 | [diff] [blame] | 238 | if (LIBMBEDTLS_FOUND) |
roman | 474b0c9 | 2024-04-23 15:05:50 +0200 | [diff] [blame] | 239 | # dependencies - mbedtls |
roman | 7bc27d4 | 2024-04-04 09:25:30 +0200 | [diff] [blame] | 240 | set(HAVE_LIBMBEDTLS TRUE) |
roman | 474b0c9 | 2024-04-23 15:05:50 +0200 | [diff] [blame] | 241 | list(APPEND libsrc src/session_mbedtls.c) |
| 242 | include_directories(${LIBMBEDTLS_INCLUDE_DIRS}) |
roman | 7bc27d4 | 2024-04-04 09:25:30 +0200 | [diff] [blame] | 243 | target_link_libraries(netconf2 ${LIBMBEDTLS_LIBRARIES}) |
| 244 | list(APPEND CMAKE_REQUIRED_LIBRARIES ${LIBMBEDTLS_LIBRARIES}) |
roman | 7bc27d4 | 2024-04-04 09:25:30 +0200 | [diff] [blame] | 245 | else() |
| 246 | # dependencies - openssl |
| 247 | find_package(OpenSSL 3.0.0 REQUIRED) |
roman | 474b0c9 | 2024-04-23 15:05:50 +0200 | [diff] [blame] | 248 | list(APPEND libsrc src/session_openssl.c) |
roman | 7bc27d4 | 2024-04-04 09:25:30 +0200 | [diff] [blame] | 249 | include_directories(${OPENSSL_INCLUDE_DIR}) |
roman | 474b0c9 | 2024-04-23 15:05:50 +0200 | [diff] [blame] | 250 | target_link_libraries(netconf2 ${OPENSSL_LIBRARIES}) |
| 251 | list(APPEND CMAKE_REQUIRED_LIBRARIES ${OPENSSL_LIBRARIES}) |
roman | 7bc27d4 | 2024-04-04 09:25:30 +0200 | [diff] [blame] | 252 | endif() |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 253 | |
roman | 2eab474 | 2023-06-06 10:00:26 +0200 | [diff] [blame] | 254 | # dependencies - libssh |
roman | 3f9b65c | 2023-06-05 14:26:58 +0200 | [diff] [blame] | 255 | find_package(LibSSH 0.9.5 REQUIRED) |
Michal Vasko | ed4a452 | 2020-05-19 16:46:12 +0200 | [diff] [blame] | 256 | target_link_libraries(netconf2 ${LIBSSH_LIBRARIES}) |
| 257 | list(APPEND CMAKE_REQUIRED_LIBRARIES ${LIBSSH_LIBRARIES}) |
Michal Vasko | 474d373 | 2017-09-27 13:57:00 +0200 | [diff] [blame] | 258 | include_directories(${LIBSSH_INCLUDE_DIRS}) |
Michal Vasko | 71514b3 | 2020-04-07 13:36:51 +0200 | [diff] [blame] | 259 | |
roman | faecc58 | 2023-06-15 16:13:31 +0200 | [diff] [blame] | 260 | # dependencies - libcurl |
| 261 | find_package(CURL 7.30.0 REQUIRED) |
| 262 | target_link_libraries(netconf2 CURL::libcurl) |
| 263 | |
Michal Vasko | 7bff575 | 2024-04-26 15:41:22 +0200 | [diff] [blame] | 264 | # crypt (if not found, assume no library needs to be linked) |
| 265 | if(${CMAKE_SYSTEM_NAME} MATCHES "QNX") |
| 266 | set(LIBCRYPT login) |
| 267 | else() |
| 268 | set(LIBCRYPT crypt) |
| 269 | endif() |
| 270 | check_library_exists(${LIBCRYPT} crypt "" HAVE_CRYPT) |
| 271 | if(HAVE_CRYPT) |
| 272 | target_link_libraries(netconf2 ${LIBCRYPT}) |
| 273 | list(APPEND CMAKE_REQUIRED_LIBRARIES ${LIBCRYPT}) |
apropp-molex | 4e903c3 | 2020-04-20 03:06:58 -0400 | [diff] [blame] | 274 | endif() |
roman | 41a11e4 | 2022-06-22 09:27:08 +0200 | [diff] [blame] | 275 | |
| 276 | # libpam |
Michal Vasko | 0d81c57 | 2022-09-26 10:39:31 +0200 | [diff] [blame] | 277 | find_package(LibPAM) |
| 278 | if(LibPAM_FOUND) |
| 279 | set(HAVE_LIBPAM TRUE) |
roman | 41a11e4 | 2022-06-22 09:27:08 +0200 | [diff] [blame] | 280 | |
Michal Vasko | 0d81c57 | 2022-09-26 10:39:31 +0200 | [diff] [blame] | 281 | target_link_libraries(netconf2 ${LIBPAM_LIBRARIES}) |
| 282 | list(APPEND CMAKE_REQUIRED_LIBRARIES ${LIBPAM_LIBRARIES}) |
| 283 | include_directories(${LIBPAM_INCLUDE_DIRS}) |
roman | 5235298 | 2023-12-01 11:28:42 +0100 | [diff] [blame] | 284 | |
| 285 | message(STATUS "SSH Keyboard Interactive system method: Linux PAM") |
| 286 | elseif(HAVE_SHADOW) |
| 287 | message(STATUS "SSH Keyboard Interactive system method: local users") |
roman | 41a11e4 | 2022-06-22 09:27:08 +0200 | [diff] [blame] | 288 | else() |
roman | 5235298 | 2023-12-01 11:28:42 +0100 | [diff] [blame] | 289 | message(WARNING "SSH Keyboard Interactive system method: disabled") |
roman | 41a11e4 | 2022-06-22 09:27:08 +0200 | [diff] [blame] | 290 | endif() |
roman | 2eab474 | 2023-06-06 10:00:26 +0200 | [diff] [blame] | 291 | |
| 292 | # set compiler flag |
| 293 | set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DNC_ENABLED_SSH_TLS") |
Michal Vasko | 474d373 | 2017-09-27 13:57:00 +0200 | [diff] [blame] | 294 | endif() |
| 295 | |
Michal Vasko | 73ed967 | 2016-01-29 13:15:15 +0100 | [diff] [blame] | 296 | # dependencies - libval |
Claus Klein | 2209191 | 2020-01-20 13:45:47 +0100 | [diff] [blame] | 297 | if(ENABLE_DNSSEC) |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 298 | find_package(LibVAL REQUIRED) |
Michal Vasko | 5eb648d | 2021-05-26 09:11:52 +0200 | [diff] [blame] | 299 | set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DENABLE_DNSSEC") |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 300 | target_link_libraries(netconf2 ${LIBVAL_LIBRARIES}) |
| 301 | include_directories(${LIBVAL_INCLUDE_DIRS}) |
Radek Krejci | 4f2d40d | 2015-10-08 12:55:01 +0200 | [diff] [blame] | 302 | endif() |
| 303 | |
| 304 | # dependencies - libyang |
Michal Vasko | a50f68e | 2022-02-24 16:10:54 +0100 | [diff] [blame] | 305 | find_package(LibYANG ${LIBYANG_DEP_SOVERSION} REQUIRED) |
Radek Krejci | 4f2d40d | 2015-10-08 12:55:01 +0200 | [diff] [blame] | 306 | target_link_libraries(netconf2 ${LIBYANG_LIBRARIES}) |
| 307 | include_directories(${LIBYANG_INCLUDE_DIRS}) |
| 308 | |
apropp-molex | 4e903c3 | 2020-04-20 03:06:58 -0400 | [diff] [blame] | 309 | # function compatibility - getpeereid on QNX |
| 310 | if(${CMAKE_SYSTEM_NAME} MATCHES "QNX") |
| 311 | target_link_libraries(netconf2 -lsocket) |
| 312 | list(APPEND CMAKE_REQUIRED_LIBRARIES socket) |
| 313 | list(REMOVE_ITEM CMAKE_REQUIRED_LIBRARIES pthread) |
| 314 | list(APPEND CMAKE_REQUIRED_DEFINITIONS -D_QNX_SOURCE) |
| 315 | check_symbol_exists(getpeereid "sys/types.h;unistd.h" HAVE_GETPEEREID) |
| 316 | list(REMOVE_ITEM CMAKE_REQUIRED_DEFINITIONS -D_QNX_SOURCE) |
| 317 | endif() |
| 318 | |
roman | 474b0c9 | 2024-04-23 15:05:50 +0200 | [diff] [blame] | 319 | # set sources |
| 320 | target_sources(netconf2 PRIVATE ${libsrc} ${compatsrc}) |
| 321 | |
Michal Vasko | 4a1ea9e | 2024-04-26 14:39:57 +0200 | [diff] [blame] | 322 | # generate config file |
Michal Vasko | 5eb648d | 2021-05-26 09:11:52 +0200 | [diff] [blame] | 323 | configure_file("${PROJECT_SOURCE_DIR}/src/config.h.in" "${PROJECT_BINARY_DIR}/src/config.h" ESCAPE_QUOTES @ONLY) |
Michal Vasko | 4a1ea9e | 2024-04-26 14:39:57 +0200 | [diff] [blame] | 324 | |
| 325 | # generate and copy public header files |
| 326 | configure_file("${PROJECT_SOURCE_DIR}/nc_client.h.in" "${PROJECT_BINARY_DIR}/include/nc_client.h") |
| 327 | configure_file("${PROJECT_SOURCE_DIR}/nc_server.h.in" "${PROJECT_BINARY_DIR}/include/nc_server.h") |
| 328 | configure_file("${PROJECT_SOURCE_DIR}/nc_version.h.in" "${PROJECT_BINARY_DIR}/include/nc_version.h") |
| 329 | file(COPY ${headers} DESTINATION "${PROJECT_BINARY_DIR}/include/libnetconf2") |
Michal Vasko | 5eb648d | 2021-05-26 09:11:52 +0200 | [diff] [blame] | 330 | |
Michal Vasko | 8b8b6bd | 2022-12-12 07:37:16 +0100 | [diff] [blame] | 331 | # install YANG modules |
| 332 | install(DIRECTORY "${PROJECT_SOURCE_DIR}/modules/" DESTINATION ${YANG_MODULE_DIR} FILES_MATCHING PATTERN "*.yang") |
| 333 | |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 334 | # install library |
Jan Kundrát | b78cdfc | 2016-11-04 17:11:24 +0100 | [diff] [blame] | 335 | install(TARGETS netconf2 DESTINATION ${CMAKE_INSTALL_LIBDIR}) |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 336 | |
| 337 | # install headers |
Michal Vasko | 4a1ea9e | 2024-04-26 14:39:57 +0200 | [diff] [blame] | 338 | install(FILES ${PROJECT_BINARY_DIR}/include/nc_client.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}) |
| 339 | install(FILES ${PROJECT_BINARY_DIR}/include/nc_server.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}) |
| 340 | install(FILES ${PROJECT_BINARY_DIR}/include/nc_version.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}) |
| 341 | install(DIRECTORY ${PROJECT_BINARY_DIR}/include/libnetconf2 DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}) |
Radek Krejci | 14b1403 | 2015-10-21 15:19:43 +0200 | [diff] [blame] | 342 | |
Michal Vasko | 6779d18 | 2016-02-17 14:36:36 +0100 | [diff] [blame] | 343 | # install pkg-config file |
| 344 | find_package(PkgConfig) |
| 345 | if(PKG_CONFIG_FOUND) |
| 346 | configure_file("libnetconf2.pc.in" "libnetconf2.pc" @ONLY) |
Michal Vasko | 4a1ea9e | 2024-04-26 14:39:57 +0200 | [diff] [blame] | 347 | install(FILES "${PROJECT_BINARY_DIR}/libnetconf2.pc" DESTINATION "${CMAKE_INSTALL_LIBDIR}/pkgconfig") |
Michal Vasko | 6779d18 | 2016-02-17 14:36:36 +0100 | [diff] [blame] | 348 | # check that pkg-config includes the used path |
| 349 | execute_process(COMMAND ${PKG_CONFIG_EXECUTABLE} --variable pc_path pkg-config RESULT_VARIABLE RETURN OUTPUT_VARIABLE PC_PATH ERROR_QUIET) |
| 350 | if(RETURN EQUAL 0) |
Jan Kundrát | b78cdfc | 2016-11-04 17:11:24 +0100 | [diff] [blame] | 351 | string(REGEX MATCH "${CMAKE_INSTALL_LIBDIR}/pkgconfig" SUBSTR "${PC_PATH}") |
Michal Vasko | 6779d18 | 2016-02-17 14:36:36 +0100 | [diff] [blame] | 352 | string(LENGTH "${SUBSTR}" SUBSTR_LEN) |
| 353 | if(SUBSTR_LEN EQUAL 0) |
Jan Kundrát | b78cdfc | 2016-11-04 17:11:24 +0100 | [diff] [blame] | 354 | 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] | 355 | endif() |
| 356 | endif() |
| 357 | endif() |
| 358 | |
Roman Janota | 907cf93 | 2022-06-03 12:33:34 +0200 | [diff] [blame] | 359 | # examples |
| 360 | if(ENABLE_EXAMPLES) |
roman | 2eab474 | 2023-06-06 10:00:26 +0200 | [diff] [blame] | 361 | if(NOT ENABLE_SSH_TLS) |
| 362 | message(WARNING "Examples will not be compiled because SSH and TLS are disabled.") |
Roman Janota | 907cf93 | 2022-06-03 12:33:34 +0200 | [diff] [blame] | 363 | else() |
| 364 | add_subdirectory(examples) |
| 365 | endif() |
| 366 | endif() |
| 367 | |
Michal Vasko | 2cd7163 | 2021-06-04 12:03:12 +0200 | [diff] [blame] | 368 | # tests |
| 369 | if(ENABLE_TESTS) |
| 370 | enable_testing() |
| 371 | add_subdirectory(tests) |
Michal Vasko | b0e3ec4 | 2021-05-26 09:48:31 +0200 | [diff] [blame] | 372 | endif() |
| 373 | |
Michal Vasko | 2cd7163 | 2021-06-04 12:03:12 +0200 | [diff] [blame] | 374 | # create coverage target for generating coverage reports |
| 375 | gen_coverage("test_.*" "test_.*_valgrind") |
Radek Krejci | ce24ab8 | 2015-10-08 15:37:02 +0200 | [diff] [blame] | 376 | |
Michal Vasko | b0e3ec4 | 2021-05-26 09:48:31 +0200 | [diff] [blame] | 377 | # generate doxygen documentation for libnetconf2 API |
Michal Vasko | 51f8700 | 2024-04-25 14:06:32 +0200 | [diff] [blame] | 378 | if(ENABLE_COMMON_TARGETS) |
| 379 | gen_doc("${doxy_files}" ${LIBNETCONF2_VERSION} ${LIBNETCONF2_DESCRIPTION} "") |
| 380 | endif() |
Michal Vasko | b0e3ec4 | 2021-05-26 09:48:31 +0200 | [diff] [blame] | 381 | |
Michal Vasko | e740214 | 2021-05-26 13:45:43 +0200 | [diff] [blame] | 382 | # generate API/ABI report |
| 383 | if ("${BUILD_TYPE_UPPER}" STREQUAL "ABICHECK") |
Michal Vasko | 54a0db1 | 2024-02-27 08:42:06 +0100 | [diff] [blame] | 384 | lib_abi_check(netconf2 "${headers}" ${LIBNETCONF2_SOVERSION_FULL} 3e3a2d11ebb3b76ef9bb6bb46f28832609acc311) |
Michal Vasko | e740214 | 2021-05-26 13:45:43 +0200 | [diff] [blame] | 385 | endif() |
| 386 | |
Michal Vasko | 2cd7163 | 2021-06-04 12:03:12 +0200 | [diff] [blame] | 387 | # source files to be covered by the 'format' target and a test with 'format-check' target |
| 388 | source_format(${format_sources}) |
| 389 | |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 390 | # clean cmake cache |
Michal Vasko | 51f8700 | 2024-04-25 14:06:32 +0200 | [diff] [blame] | 391 | if(ENABLE_COMMON_TARGETS) |
| 392 | add_custom_target(cleancache |
| 393 | COMMAND make clean |
| 394 | COMMAND find . -iname '*cmake*' -not -name CMakeLists.txt -exec rm -rf {} + |
| 395 | COMMAND rm -rf Makefile Doxyfile |
| 396 | WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}) |
| 397 | endif() |
Bi-Ruei, Chiu | f5faf83 | 2019-09-21 20:15:59 +0800 | [diff] [blame] | 398 | |
| 399 | # uninstall |
Michal Vasko | 51f8700 | 2024-04-25 14:06:32 +0200 | [diff] [blame] | 400 | if(ENABLE_COMMON_TARGETS) |
| 401 | add_custom_target(uninstall "${CMAKE_COMMAND}" -P "${CMAKE_MODULE_PATH}/uninstall.cmake") |
| 402 | endif() |