blob: e20d2907985be736cc3559e4bd13663ebdfcf002 [file] [log] [blame]
Michal Vasko623d59e2021-01-13 14:11:48 +01001cmake_minimum_required(VERSION 2.8.12)
Claus Klein22091912020-01-20 13:45:47 +01002
Michal Vaskodf67eb42020-02-06 16:22:07 +01003project(libnetconf2 C)
Claus Klein22091912020-01-20 13:45:47 +01004
Michal Vasko9e8ac262020-04-07 13:06:45 +02005# include custom Modules
6list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/CMakeModules/")
7
Jan Kundrátb78cdfc2016-11-04 17:11:24 +01008include(GNUInstallDirs)
Michal Vasko9aa3c6a2018-11-12 08:50:10 +01009include(CheckFunctionExists)
Michal Vasko32af6142019-01-23 09:30:42 +010010include(CheckCSourceCompiles)
Michal Vasko352c3902018-11-12 09:16:59 +010011include(CheckIncludeFile)
Michal Vasko9e8ac262020-04-07 13:06:45 +020012include(UseCompat)
Michal Vaskoe7402142021-05-26 13:45:43 +020013include(ABICheck)
Michal Vaskob0e3ec42021-05-26 09:48:31 +020014include(SourceFormat)
Michal Vasko4e6d3242021-05-26 09:13:24 +020015include(GenDoc)
Michal Vasko2cd71632021-06-04 12:03:12 +020016include(GenCoverage)
Claus Klein22091912020-01-20 13:45:47 +010017
Michal Vaskod6123692019-07-16 16:04:16 +020018if(POLICY CMP0075)
19 cmake_policy(SET CMP0075 NEW)
20endif()
Radek Krejci183f7e72015-09-01 17:25:47 +020021
Michal Vasko6779d182016-02-17 14:36:36 +010022set(LIBNETCONF2_DESCRIPTION "NETCONF server and client library in C.")
Radek Krejci183f7e72015-09-01 17:25:47 +020023
24# check the supported platform
25if(NOT UNIX)
Michal Vasko3d865d22016-01-28 16:00:53 +010026 message(FATAL_ERROR "Only *nix like systems are supported.")
Radek Krejci183f7e72015-09-01 17:25:47 +020027endif()
28
Michal Vasko63b52fc2018-02-16 10:08:17 +010029# osx specific
30set(CMAKE_MACOSX_RPATH TRUE)
31
Radek Krejci183f7e72015-09-01 17:25:47 +020032# set default build type if not specified by user
33if(NOT CMAKE_BUILD_TYPE)
Claus Klein22091912020-01-20 13:45:47 +010034 set(CMAKE_BUILD_TYPE Debug)
Radek Krejci183f7e72015-09-01 17:25:47 +020035endif()
Jan Kundrát1d54fce2021-10-08 19:48:19 +020036# see https://github.com/CESNET/libyang/pull/1692 for why CMAKE_C_FLAGS_<type> are not used directly
Radek Krejci97e37872021-05-24 22:16:37 +020037# normalize build type string
38string(TOUPPER "${CMAKE_BUILD_TYPE}" BUILD_TYPE_UPPER)
39if ("${BUILD_TYPE_UPPER}" STREQUAL "RELEASE")
Michal Vaskoe7402142021-05-26 13:45:43 +020040 set(CMAKE_BUILD_TYPE "Release" CACHE STRING "Build Type" FORCE)
Jan Kundrát1d54fce2021-10-08 19:48:19 +020041 set(CMAKE_C_FLAGS "-DNDEBUG -O2 ${CMAKE_C_FLAGS}")
Michal Vaskoe7402142021-05-26 13:45:43 +020042elseif("${BUILD_TYPE_UPPER}" STREQUAL "DEBUG")
43 set(CMAKE_BUILD_TYPE "Debug" CACHE STRING "Build Type" FORCE)
Jan Kundrát1d54fce2021-10-08 19:48:19 +020044 set(CMAKE_C_FLAGS "-g -O0 ${CMAKE_C_FLAGS}")
Michal Vaskoe7402142021-05-26 13:45:43 +020045elseif("${BUILD_TYPE_UPPER}" STREQUAL "RELWITHDEBINFO")
46 set(CMAKE_BUILD_TYPE "RelWithDebInfo" CACHE STRING "Build Type" FORCE)
47elseif("${BUILD_TYPE_UPPER}" STREQUAL "RELWITHDEBUG")
48 set(CMAKE_BUILD_TYPE "RelWithDebug" CACHE STRING "Build Type" FORCE)
49elseif("${BUILD_TYPE_UPPER}" STREQUAL "ABICHECK")
50 set(CMAKE_BUILD_TYPE "ABICheck" CACHE STRING "Build Type" FORCE)
Jan Kundrát1d54fce2021-10-08 19:48:19 +020051 set(CMAKE_C_FLAGS "-g -Og ${CMAKE_C_FLAGS}")
Michal Vaskoe7402142021-05-26 13:45:43 +020052elseif("${BUILD_TYPE_UPPER}" STREQUAL "DOCONLY")
53 set(CMAKE_BUILD_TYPE "DocOnly" CACHE STRING "Build Type" FORCE)
Radek Krejci97e37872021-05-24 22:16:37 +020054endif()
Radek Krejci183f7e72015-09-01 17:25:47 +020055
Michal Vasko08d5cde2019-07-10 14:34:55 +020056# 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 Vaskoa11ddd92021-05-26 13:24:23 +020060set(LIBNETCONF2_MAJOR_VERSION 2)
Michal Vaskoe2bf4972021-11-09 12:20:29 +010061set(LIBNETCONF2_MINOR_VERSION 1)
Michal Vasko99fd7ad2023-10-23 12:05:57 +020062set(LIBNETCONF2_MICRO_VERSION 40)
Radek Krejci4f2d40d2015-10-08 12:55:01 +020063set(LIBNETCONF2_VERSION ${LIBNETCONF2_MAJOR_VERSION}.${LIBNETCONF2_MINOR_VERSION}.${LIBNETCONF2_MICRO_VERSION})
Michal Vasko08d5cde2019-07-10 14:34:55 +020064
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 Vasko79258832021-11-09 12:20:20 +010068set(LIBNETCONF2_MAJOR_SOVERSION 3)
Michal Vasko818f2572023-10-17 08:56:40 +020069set(LIBNETCONF2_MINOR_SOVERSION 7)
Michal Vasko71be2ae2023-10-23 12:05:47 +020070set(LIBNETCONF2_MICRO_SOVERSION 1)
Michal Vasko08d5cde2019-07-10 14:34:55 +020071set(LIBNETCONF2_SOVERSION_FULL ${LIBNETCONF2_MAJOR_SOVERSION}.${LIBNETCONF2_MINOR_SOVERSION}.${LIBNETCONF2_MICRO_SOVERSION})
72set(LIBNETCONF2_SOVERSION ${LIBNETCONF2_MAJOR_SOVERSION})
Radek Krejci4f2d40d2015-10-08 12:55:01 +020073
Michal Vaskoa50f68e2022-02-24 16:10:54 +010074# Version of libyang library that this project depends on
Michal Vasko78939072022-12-12 07:43:18 +010075set(LIBYANG_DEP_VERSION 2.1.19)
76set(LIBYANG_DEP_SOVERSION 2.28.0)
Michal Vasko429a7472021-04-15 10:00:28 +020077set(LIBYANG_DEP_SOVERSION_MAJOR 2)
Michal Vasko819598b2020-07-29 10:05:11 +020078
Michal Vaskoba9f3582023-02-22 10:26:32 +010079set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -fvisibility=hidden -std=c99")
Michal Vasko5eb648d2021-05-26 09:11:52 +020080
Michal Vasko2cd71632021-06-04 12:03:12 +020081#
Michal Vasko5eb648d2021-05-26 09:11:52 +020082# options
Michal Vasko2cd71632021-06-04 12:03:12 +020083#
84if(("${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)
87else()
88 option(ENABLE_TESTS "Build tests" OFF)
89 option(ENABLE_VALGRIND_TESTS "Build tests with valgrind" OFF)
90endif()
Roman Janota907cf932022-06-03 12:33:34 +020091option(ENABLE_EXAMPLES "Build examples" ON)
Michal Vasko2cd71632021-06-04 12:03:12 +020092option(ENABLE_COVERAGE "Build code coverage report from tests" OFF)
Michal Vaskofb2fb762015-10-27 11:44:32 +010093option(ENABLE_SSH "Enable NETCONF over SSH support (via libssh)" ON)
Michal Vasko061dc802016-02-29 10:15:28 +010094option(ENABLE_TLS "Enable NETCONF over TLS support (via OpenSSL)" ON)
Michal Vasko3d865d22016-01-28 16:00:53 +010095option(ENABLE_DNSSEC "Enable support for SSHFP retrieval using DNSSEC for SSH (requires OpenSSL and libval)" OFF)
Michal Vaskof471fa02017-02-15 10:48:12 +010096set(READ_INACTIVE_TIMEOUT 20 CACHE STRING "Maximum number of seconds waiting for new data once some data have arrived")
97set(READ_ACTIVE_TIMEOUT 300 CACHE STRING "Maximum number of seconds for receiving a full message")
98set(MAX_PSPOLL_THREAD_COUNT 6 CACHE STRING "Maximum number of threads that could simultaneously access a ps_poll structure")
Michal Vasko5a9bd9c2019-08-16 15:50:09 +020099set(TIMEOUT_STEP 100 CACHE STRING "Number of microseconds tasks are repeated until timeout elapses")
Michal Vasko8b8b6bd2022-12-12 07:37:16 +0100100set(YANG_MODULE_DIR "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_DATADIR}/yang/modules/libnetconf2" CACHE STRING "Directory where to copy the YANG modules to")
Michal Vasko80227222022-12-12 09:05:24 +0100101set(CLIENT_SEARCH_DIR "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_DATADIR}/yang/modules" CACHE STRING "Default NC client YANG module search directory")
Michal Vaskod8951c72022-09-26 09:39:29 +0200102set(CALL_HOME_BACKOFF_WAIT 2 CACHE STRING "Number of seconds to wait between Call Home connection attempts")
Michal Vasko3d865d22016-01-28 16:00:53 +0100103
Michal Vasko2cd71632021-06-04 12:03:12 +0200104#
105# sources
106#
Radek Krejci183f7e72015-09-01 17:25:47 +0200107set(libsrc
Michal Vasko3d865d22016-01-28 16:00:53 +0100108 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
romanc1d2b092023-02-02 08:58:27 +0100114 src/session_server.c
roman27215242023-03-10 14:55:00 +0100115 src/server_config.c
116 src/config_new.c)
Radek Krejci183f7e72015-09-01 17:25:47 +0200117
Michal Vaskofb2fb762015-10-27 11:44:32 +0100118if(ENABLE_SSH)
Claus Klein22091912020-01-20 13:45:47 +0100119 list(APPEND libsrc
Michal Vasko3d865d22016-01-28 16:00:53 +0100120 src/session_client_ssh.c
121 src/session_server_ssh.c)
Radek Krejci53691be2016-02-22 13:58:37 +0100122 set(SSH_MACRO "#ifndef NC_ENABLED_SSH\n#define NC_ENABLED_SSH\n#endif")
Radek Krejciac6d3472015-10-22 15:47:18 +0200123endif()
124
Radek Krejci9f03b482015-10-22 16:02:10 +0200125if(ENABLE_TLS)
Claus Klein22091912020-01-20 13:45:47 +0100126 list(APPEND libsrc
Michal Vasko3d865d22016-01-28 16:00:53 +0100127 src/session_client_tls.c
128 src/session_server_tls.c)
Radek Krejci53691be2016-02-22 13:58:37 +0100129 set(TLS_MACRO "#ifndef NC_ENABLED_TLS\n#define NC_ENABLED_TLS\n#endif")
Radek Krejci9f03b482015-10-22 16:02:10 +0200130endif()
131
Radek Krejci183f7e72015-09-01 17:25:47 +0200132set(headers
Michal Vasko3d865d22016-01-28 16:00:53 +0100133 src/log.h
134 src/netconf.h
135 src/session.h
136 src/messages_client.h
137 src/messages_server.h
138 src/session_client.h
Michal Vasko45f298f2016-01-29 10:26:26 +0100139 src/session_client_ch.h
140 src/session_server.h
romanc1d2b092023-02-02 08:58:27 +0100141 src/session_server_ch.h
roman9b1379c2023-03-31 10:11:10 +0200142 src/server_config.h)
Radek Krejci183f7e72015-09-01 17:25:47 +0200143
Michal Vasko5eb648d2021-05-26 09:11:52 +0200144# files to generate doxygen from
145set(doxy_files
146 src/libnetconf.h
147 src/log.h
148 src/netconf.h
149 src/session.h
150 src/messages_client.h
151 src/messages_server.h
152 src/session_client.h
153 src/session_client_ch.h
154 src/session_server.h
roman9b1379c2023-03-31 10:11:10 +0200155 src/session_server_ch.h
156 src/server_config.h)
Michal Vasko5eb648d2021-05-26 09:11:52 +0200157
Michal Vaskob0e3ec42021-05-26 09:48:31 +0200158# source files to be covered by the 'format' target
159set(format_sources
160 compat/*.c
161 compat/*.h*
Roman Janota907cf932022-06-03 12:33:34 +0200162 examples/*.c
163 examples/*.h*
Michal Vaskob0e3ec42021-05-26 09:48:31 +0200164 src/*.c
165 src/*.h
166 tests/*.c
roman41a11e42022-06-22 09:27:08 +0200167 tests/client/*.c
168 tests/pam/*.c)
Michal Vaskob0e3ec42021-05-26 09:48:31 +0200169
Michal Vasko2cd71632021-06-04 12:03:12 +0200170#
171# checks
172#
173if(ENABLE_DNSSEC AND NOT ENABLE_SSH)
174 message(WARNING "DNSSEC SSHFP retrieval cannot be used without SSH support.")
175 set(ENABLE_DNSSEC OFF)
176endif()
177
178if(ENABLE_VALGRIND_TESTS)
179 find_program(VALGRIND_FOUND valgrind)
180 if(NOT VALGRIND_FOUND)
181 message(WARNING "valgrind executable not found! Disabling memory leaks tests.")
182 set(ENABLE_VALGRIND_TESTS OFF)
183 else()
184 set(ENABLE_TESTS ON)
185 endif()
186endif()
187
188if(ENABLE_TESTS)
Michal Vasko1f439d42021-10-07 09:27:15 +0200189 find_package(CMocka 1.0.1)
Michal Vasko2cd71632021-06-04 12:03:12 +0200190 if(NOT CMOCKA_FOUND)
191 message(STATUS "Disabling tests because of missing CMocka")
192 set(ENABLE_TESTS OFF)
193 endif()
194endif()
195
196if(ENABLE_COVERAGE)
197 gen_coverage_enable(${ENABLE_TESTS})
198endif()
199
200if ("${BUILD_TYPE_UPPER}" STREQUAL "DEBUG")
Michal Vaskoac1786b2023-05-19 11:28:31 +0200201 source_format_enable(0.77)
Michal Vasko2cd71632021-06-04 12:03:12 +0200202endif()
203
Radek Krejci0a14da02021-05-24 22:27:28 +0200204if("${BUILD_TYPE_UPPER}" STREQUAL "DOCONLY")
Michal Vasko4e6d3242021-05-26 09:13:24 +0200205 gen_doc("${doxy_files}" ${LIBNETCONF2_VERSION} ${LIBNETCONF2_DESCRIPTION} "")
Radek Krejci0a14da02021-05-24 22:27:28 +0200206 return()
207endif()
208
Michal Vasko2cd71632021-06-04 12:03:12 +0200209#
210# targets
211#
212
Michal Vasko9e8ac262020-04-07 13:06:45 +0200213# use compat
214use_compat()
215
Claus Klein22091912020-01-20 13:45:47 +0100216# netconf2 target
Michal Vasko7a20d2e2021-05-19 16:40:23 +0200217add_library(netconf2 SHARED ${libsrc} ${compatsrc})
Michal Vaskod8536552020-04-21 14:41:16 +0200218set_target_properties(netconf2 PROPERTIES VERSION ${LIBNETCONF2_SOVERSION_FULL} SOVERSION ${LIBNETCONF2_SOVERSION})
Radek Krejci4f2d40d2015-10-08 12:55:01 +0200219
Michal Vasko5eb648d2021-05-26 09:11:52 +0200220# include repository files with highest priority
221include_directories(${PROJECT_BINARY_DIR}/src)
Radek Krejcice24ab82015-10-08 15:37:02 +0200222
Radek Krejci32898d52016-07-14 17:37:02 +0200223# dependencies - pthread
Michal Vasko73ed9672016-01-29 13:15:15 +0100224set(CMAKE_THREAD_PREFER_PTHREAD TRUE)
225find_package(Threads REQUIRED)
226target_link_libraries(netconf2 ${CMAKE_THREAD_LIBS_INIT})
227
Radek Krejci28472922016-07-15 11:51:16 +0200228# check availability for some pthread functions
Radek Krejci32898d52016-07-14 17:37:02 +0200229set(CMAKE_REQUIRED_LIBRARIES pthread)
Rosen Penevef2f3ac2019-07-15 18:15:28 -0700230check_function_exists(pthread_rwlockattr_setkind_np HAVE_PTHREAD_RWLOCKATTR_SETKIND_NP)
Radek Krejci32898d52016-07-14 17:37:02 +0200231
Radek Krejci4f2d40d2015-10-08 12:55:01 +0200232# dependencies - openssl
Radek Krejci5c69cdf2017-05-26 16:29:29 +0200233if(ENABLE_TLS OR ENABLE_DNSSEC OR ENABLE_SSH)
Michal Vasko3d865d22016-01-28 16:00:53 +0100234 find_package(OpenSSL REQUIRED)
Claus Klein22091912020-01-20 13:45:47 +0100235 if(ENABLE_TLS)
Michal Vaskod2871972021-09-14 11:59:00 +0200236 message(STATUS "OpenSSL found, required for TLS")
Michal Vasko5eb648d2021-05-26 09:11:52 +0200237 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DNC_ENABLED_TLS")
Michal Vasko3d865d22016-01-28 16:00:53 +0100238 endif()
Michal Vaskod2871972021-09-14 11:59:00 +0200239 if(OPENSSL_VERSION VERSION_LESS 1.1.1)
240 message(WARNING "OpenSSL version ${OPENSSL_VERSION} is no longer maintained, consider an update.")
241 endif()
Claus Klein22091912020-01-20 13:45:47 +0100242
Michal Vasko3d865d22016-01-28 16:00:53 +0100243 target_link_libraries(netconf2 ${OPENSSL_LIBRARIES})
244 include_directories(${OPENSSL_INCLUDE_DIR})
245endif()
246
Michal Vasko474d3732017-09-27 13:57:00 +0200247# dependencies - libssh
248if(ENABLE_SSH)
Michal Vasko819598b2020-07-29 10:05:11 +0200249 find_package(LibSSH 0.7.1 REQUIRED)
Michal Vaskoed4a4522020-05-19 16:46:12 +0200250 if(LIBSSH_VERSION VERSION_EQUAL 0.9.3 OR LIBSSH_VERSION VERSION_EQUAL 0.9.4)
251 message(FATAL_ERROR "LibSSH ${LIBSSH_VERSION} includes regression bugs and libnetconf2 will NOT work properly, try to use another version")
Michal Vasko899760c2020-01-03 10:13:11 +0100252 endif()
Claus Klein22091912020-01-20 13:45:47 +0100253
Michal Vaskoed4a4522020-05-19 16:46:12 +0200254 target_link_libraries(netconf2 ${LIBSSH_LIBRARIES})
255 list(APPEND CMAKE_REQUIRED_LIBRARIES ${LIBSSH_LIBRARIES})
Michal Vasko474d3732017-09-27 13:57:00 +0200256 include_directories(${LIBSSH_INCLUDE_DIRS})
Michal Vasko5eb648d2021-05-26 09:11:52 +0200257 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DNC_ENABLED_SSH")
Michal Vasko71514b32020-04-07 13:36:51 +0200258
259 # crypt
Michal Vasko18351942022-08-22 14:58:17 +0200260 if(${CMAKE_SYSTEM_NAME} MATCHES "QNX")
apropp-molex4e903c32020-04-20 03:06:58 -0400261 target_link_libraries(netconf2 -llogin)
262 list(APPEND CMAKE_REQUIRED_LIBRARIES login)
Michal Vasko18351942022-08-22 14:58:17 +0200263 elseif(NOT APPLE)
264 target_link_libraries(netconf2 -lcrypt)
265 list(APPEND CMAKE_REQUIRED_LIBRARIES crypt)
apropp-molex4e903c32020-04-20 03:06:58 -0400266 endif()
roman41a11e42022-06-22 09:27:08 +0200267
268 # libpam
Michal Vasko0d81c572022-09-26 10:39:31 +0200269 find_package(LibPAM)
270 if(LibPAM_FOUND)
271 set(HAVE_LIBPAM TRUE)
roman41a11e42022-06-22 09:27:08 +0200272
Michal Vasko0d81c572022-09-26 10:39:31 +0200273 # enable PAM test if a PAM header file contains a declaration of a function pam_start_confdir
274 if (LIBPAM_HAVE_CONFDIR)
275 message(STATUS "LibPAM found, version >= 1.4, enabled PAM tests")
276 else()
277 message(STATUS "LibPAM found, version < 1.4, disabled PAM tests")
278 endif()
279
280 target_link_libraries(netconf2 ${LIBPAM_LIBRARIES})
281 list(APPEND CMAKE_REQUIRED_LIBRARIES ${LIBPAM_LIBRARIES})
282 include_directories(${LIBPAM_INCLUDE_DIRS})
roman41a11e42022-06-22 09:27:08 +0200283 else()
Michal Vasko0d81c572022-09-26 10:39:31 +0200284 message(WARNING "LibPAM not found, PAM-based keyboard-interactive SSH server authentication method is disabled")
roman41a11e42022-06-22 09:27:08 +0200285 endif()
Michal Vasko474d3732017-09-27 13:57:00 +0200286endif()
287
Michal Vasko73ed9672016-01-29 13:15:15 +0100288# dependencies - libval
Claus Klein22091912020-01-20 13:45:47 +0100289if(ENABLE_DNSSEC)
Michal Vasko3d865d22016-01-28 16:00:53 +0100290 find_package(LibVAL REQUIRED)
Michal Vasko5eb648d2021-05-26 09:11:52 +0200291 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DENABLE_DNSSEC")
Michal Vasko3d865d22016-01-28 16:00:53 +0100292 target_link_libraries(netconf2 ${LIBVAL_LIBRARIES})
293 include_directories(${LIBVAL_INCLUDE_DIRS})
Radek Krejci4f2d40d2015-10-08 12:55:01 +0200294endif()
295
296# dependencies - libyang
Michal Vaskoa50f68e2022-02-24 16:10:54 +0100297find_package(LibYANG ${LIBYANG_DEP_SOVERSION} REQUIRED)
Radek Krejci4f2d40d2015-10-08 12:55:01 +0200298target_link_libraries(netconf2 ${LIBYANG_LIBRARIES})
299include_directories(${LIBYANG_INCLUDE_DIRS})
300
apropp-molex4e903c32020-04-20 03:06:58 -0400301# header file compatibility - shadow.h and crypt.h
302check_include_file("shadow.h" HAVE_SHADOW)
303check_include_file("crypt.h" HAVE_CRYPT)
304
305# function compatibility - getpeereid on QNX
306if(${CMAKE_SYSTEM_NAME} MATCHES "QNX")
307 target_link_libraries(netconf2 -lsocket)
308 list(APPEND CMAKE_REQUIRED_LIBRARIES socket)
309 list(REMOVE_ITEM CMAKE_REQUIRED_LIBRARIES pthread)
310 list(APPEND CMAKE_REQUIRED_DEFINITIONS -D_QNX_SOURCE)
311 check_symbol_exists(getpeereid "sys/types.h;unistd.h" HAVE_GETPEEREID)
312 list(REMOVE_ITEM CMAKE_REQUIRED_DEFINITIONS -D_QNX_SOURCE)
313endif()
314
Michal Vasko5eb648d2021-05-26 09:11:52 +0200315# generate files
316configure_file("${PROJECT_SOURCE_DIR}/src/config.h.in" "${PROJECT_BINARY_DIR}/src/config.h" ESCAPE_QUOTES @ONLY)
317configure_file(nc_client.h.in nc_client.h)
318configure_file(nc_server.h.in nc_server.h)
Michal Vaskoa20332f2021-11-09 12:41:21 +0100319configure_file(nc_version.h.in nc_version.h)
Michal Vasko5eb648d2021-05-26 09:11:52 +0200320
Michal Vasko8b8b6bd2022-12-12 07:37:16 +0100321# install YANG modules
322install(DIRECTORY "${PROJECT_SOURCE_DIR}/modules/" DESTINATION ${YANG_MODULE_DIR} FILES_MATCHING PATTERN "*.yang")
323
Radek Krejci183f7e72015-09-01 17:25:47 +0200324# install library
Jan Kundrátb78cdfc2016-11-04 17:11:24 +0100325install(TARGETS netconf2 DESTINATION ${CMAKE_INSTALL_LIBDIR})
Radek Krejci183f7e72015-09-01 17:25:47 +0200326
327# install headers
Jan Kundrátb78cdfc2016-11-04 17:11:24 +0100328install(FILES ${CMAKE_CURRENT_BINARY_DIR}/nc_client.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR})
329install(FILES ${CMAKE_CURRENT_BINARY_DIR}/nc_server.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR})
Michal Vaskoa20332f2021-11-09 12:41:21 +0100330install(FILES ${CMAKE_CURRENT_BINARY_DIR}/nc_version.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR})
Michal Vaskoe7402142021-05-26 13:45:43 +0200331install(FILES ${headers} ${PROJECT_BINARY_DIR}/src/config.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/libnetconf2)
Radek Krejci14b14032015-10-21 15:19:43 +0200332
Michal Vasko6779d182016-02-17 14:36:36 +0100333# install pkg-config file
334find_package(PkgConfig)
335if(PKG_CONFIG_FOUND)
336 configure_file("libnetconf2.pc.in" "libnetconf2.pc" @ONLY)
Jan Kundrátb78cdfc2016-11-04 17:11:24 +0100337 install(FILES "${CMAKE_CURRENT_BINARY_DIR}/libnetconf2.pc" DESTINATION "${CMAKE_INSTALL_LIBDIR}/pkgconfig")
Michal Vasko6779d182016-02-17 14:36:36 +0100338 # check that pkg-config includes the used path
339 execute_process(COMMAND ${PKG_CONFIG_EXECUTABLE} --variable pc_path pkg-config RESULT_VARIABLE RETURN OUTPUT_VARIABLE PC_PATH ERROR_QUIET)
340 if(RETURN EQUAL 0)
Jan Kundrátb78cdfc2016-11-04 17:11:24 +0100341 string(REGEX MATCH "${CMAKE_INSTALL_LIBDIR}/pkgconfig" SUBSTR "${PC_PATH}")
Michal Vasko6779d182016-02-17 14:36:36 +0100342 string(LENGTH "${SUBSTR}" SUBSTR_LEN)
343 if(SUBSTR_LEN EQUAL 0)
Jan Kundrátb78cdfc2016-11-04 17:11:24 +0100344 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 Vasko6779d182016-02-17 14:36:36 +0100345 endif()
346 endif()
347endif()
348
Roman Janota907cf932022-06-03 12:33:34 +0200349# examples
350if(ENABLE_EXAMPLES)
351 if(NOT ENABLE_SSH)
352 message(WARNING "Examples will not be compiled because SSH is disabled.")
353 else()
354 add_subdirectory(examples)
355 endif()
356endif()
357
Michal Vasko2cd71632021-06-04 12:03:12 +0200358# tests
359if(ENABLE_TESTS)
360 enable_testing()
361 add_subdirectory(tests)
Michal Vaskob0e3ec42021-05-26 09:48:31 +0200362endif()
363
Michal Vasko2cd71632021-06-04 12:03:12 +0200364# create coverage target for generating coverage reports
365gen_coverage("test_.*" "test_.*_valgrind")
Radek Krejcice24ab82015-10-08 15:37:02 +0200366
Michal Vaskob0e3ec42021-05-26 09:48:31 +0200367# generate doxygen documentation for libnetconf2 API
368gen_doc("${doxy_files}" ${LIBNETCONF2_VERSION} ${LIBNETCONF2_DESCRIPTION} "")
369
Michal Vaskoe7402142021-05-26 13:45:43 +0200370# generate API/ABI report
371if ("${BUILD_TYPE_UPPER}" STREQUAL "ABICHECK")
Michal Vasko53ab4102022-10-20 09:08:22 +0200372 lib_abi_check(netconf2 "${headers}" ${LIBNETCONF2_SOVERSION_FULL} ffb35e9e5b58d0bffb15c0c2efc46a888d4c10b1)
Michal Vaskoe7402142021-05-26 13:45:43 +0200373endif()
374
Michal Vasko2cd71632021-06-04 12:03:12 +0200375# source files to be covered by the 'format' target and a test with 'format-check' target
376source_format(${format_sources})
377
Radek Krejci183f7e72015-09-01 17:25:47 +0200378# clean cmake cache
379add_custom_target(cleancache
380 COMMAND make clean
381 COMMAND find . -iname '*cmake*' -not -name CMakeLists.txt -exec rm -rf {} +
382 COMMAND rm -rf Makefile Doxyfile
383 WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR})
Bi-Ruei, Chiuf5faf832019-09-21 20:15:59 +0800384
385# uninstall
386add_custom_target(uninstall "${CMAKE_COMMAND}" -P "${CMAKE_MODULE_PATH}/uninstall.cmake")