blob: 76741a143d053efa254c577db2c316608548778c [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 Vaskob0e3ec42021-05-26 09:48:31 +020013include(SourceFormat)
Michal Vasko4e6d3242021-05-26 09:13:24 +020014include(GenDoc)
Claus Klein22091912020-01-20 13:45:47 +010015
Michal Vaskod6123692019-07-16 16:04:16 +020016if(POLICY CMP0075)
17 cmake_policy(SET CMP0075 NEW)
18endif()
Radek Krejci183f7e72015-09-01 17:25:47 +020019
Michal Vasko6779d182016-02-17 14:36:36 +010020set(LIBNETCONF2_DESCRIPTION "NETCONF server and client library in C.")
Radek Krejci183f7e72015-09-01 17:25:47 +020021
22# check the supported platform
23if(NOT UNIX)
Michal Vasko3d865d22016-01-28 16:00:53 +010024 message(FATAL_ERROR "Only *nix like systems are supported.")
Radek Krejci183f7e72015-09-01 17:25:47 +020025endif()
26
Michal Vasko63b52fc2018-02-16 10:08:17 +010027# osx specific
28set(CMAKE_MACOSX_RPATH TRUE)
29
Radek Krejci183f7e72015-09-01 17:25:47 +020030# set default build type if not specified by user
31if(NOT CMAKE_BUILD_TYPE)
Claus Klein22091912020-01-20 13:45:47 +010032 set(CMAKE_BUILD_TYPE Debug)
Radek Krejci183f7e72015-09-01 17:25:47 +020033endif()
Radek Krejci97e37872021-05-24 22:16:37 +020034# normalize build type string
35string(TOUPPER "${CMAKE_BUILD_TYPE}" BUILD_TYPE_UPPER)
36if ("${BUILD_TYPE_UPPER}" STREQUAL "RELEASE")
37 set(CMAKE_BUILD_TYPE "Release" CACHE STRING "Build Type" FORCE)
38elseif ("${BUILD_TYPE_UPPER}" STREQUAL "DEBUG")
39 set(CMAKE_BUILD_TYPE "Debug" CACHE STRING "Build Type" FORCE)
40elseif ("${BUILD_TYPE_UPPER}" STREQUAL "RELWITHDEBINFO")
41 set(CMAKE_BUILD_TYPE "RelWithDebInfo" CACHE STRING "Build Type" FORCE)
42elseif ("${BUILD_TYPE_UPPER}" STREQUAL "RELWITHDEBUG")
43 set(CMAKE_BUILD_TYPE "RelWithDebug" CACHE STRING "Build Type" FORCE)
Radek Krejci0a14da02021-05-24 22:27:28 +020044elseif ("${BUILD_TYPE_UPPER}" STREQUAL "DOCONLY")
45 set(CMAKE_BUILD_TYPE "DocOnly" CACHE STRING "Build Type" FORCE)
Radek Krejci97e37872021-05-24 22:16:37 +020046endif()
Radek Krejci183f7e72015-09-01 17:25:47 +020047
Michal Vasko08d5cde2019-07-10 14:34:55 +020048# Version of the project
49# Generic version of not only the library. Major version is reserved for really big changes of the project,
50# minor version changes with added functionality (new tool, functionality of the tool or library, ...) and
51# micro version is changed with a set of small changes or bugfixes anywhere in the project.
Michal Vaskoa11ddd92021-05-26 13:24:23 +020052set(LIBNETCONF2_MAJOR_VERSION 2)
53set(LIBNETCONF2_MINOR_VERSION 0)
54set(LIBNETCONF2_MICRO_VERSION 0)
Radek Krejci4f2d40d2015-10-08 12:55:01 +020055set(LIBNETCONF2_VERSION ${LIBNETCONF2_MAJOR_VERSION}.${LIBNETCONF2_MINOR_VERSION}.${LIBNETCONF2_MICRO_VERSION})
Michal Vasko08d5cde2019-07-10 14:34:55 +020056
57# Version of the library
58# Major version is changed with every backward non-compatible API/ABI change in libyang, minor version changes
59# with backward compatible change and micro version is connected with any internal change of the library.
Michal Vaskoe7e38a52021-05-26 13:24:12 +020060set(LIBNETCONF2_MAJOR_SOVERSION 2)
61set(LIBNETCONF2_MINOR_SOVERSION 0)
62set(LIBNETCONF2_MICRO_SOVERSION 0)
Michal Vasko08d5cde2019-07-10 14:34:55 +020063set(LIBNETCONF2_SOVERSION_FULL ${LIBNETCONF2_MAJOR_SOVERSION}.${LIBNETCONF2_MINOR_SOVERSION}.${LIBNETCONF2_MICRO_SOVERSION})
64set(LIBNETCONF2_SOVERSION ${LIBNETCONF2_MAJOR_SOVERSION})
Radek Krejci4f2d40d2015-10-08 12:55:01 +020065
Michal Vasko819598b2020-07-29 10:05:11 +020066# libyang SO version required
Michal Vasko429a7472021-04-15 10:00:28 +020067set(LIBYANG_DEP_SOVERSION_MAJOR 2)
Michal Vasko819598b2020-07-29 10:05:11 +020068
Radek Krejciac6d3472015-10-22 15:47:18 +020069# build options
Michal Vasko5eb648d2021-05-26 09:11:52 +020070if(("${BUILD_TYPE_UPPER}" STREQUAL "DEBUG") OR ("${BUILD_TYPE_UPPER}" STREQUAL "RELWITHDEBINFO"))
71 option(ENABLE_BUILD_TESTS "Build tests" ON)
72 option(ENABLE_VALGRIND_TESTS "Build tests with valgrind" ON)
73else()
74 option(ENABLE_BUILD_TESTS "Build tests" OFF)
75 option(ENABLE_VALGRIND_TESTS "Build tests with valgrind" OFF)
76endif()
77option(ENABLE_COVERAGE "Build code coverage report from tests" OFF)
78
79if(ENABLE_COVERAGE)
80 find_program(PATH_GCOV NAMES gcov)
81 if(NOT PATH_GCOV)
82 message(WARNING "'gcov' executable not found! Disabling building code coverage report.")
83 set(ENABLE_COVERAGE OFF)
84 endif()
85
86 find_program(PATH_LCOV NAMES lcov)
87 if(NOT PATH_LCOV)
88 message(WARNING "'lcov' executable not found! Disabling building code coverage report.")
89 set(ENABLE_COVERAGE OFF)
90 endif()
91
92 find_program(PATH_GENHTML NAMES genhtml)
93 if(NOT PATH_GENHTML)
94 message(WARNING "'genhtml' executable not found! Disabling building code coverage report.")
95 set(ENABLE_COVERAGE OFF)
96 endif()
97
98 if(NOT CMAKE_COMPILER_IS_GNUCC)
99 message(WARNING "Compiler is not gcc! Coverage may break the tests!")
100 endif()
101
102 if(ENABLE_COVERAGE)
103 set(CMAKE_C_FLAGS_COVERAGE "--coverage -fprofile-arcs -ftest-coverage")
104 endif()
105endif()
106
107# compilation flags
Michal Vasko7891b942021-05-26 09:47:00 +0200108set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${CMAKE_C_FLAGS_COVERAGE} -Wall -Wextra -fvisibility=hidden -std=gnu99")
Michal Vasko5eb648d2021-05-26 09:11:52 +0200109set(CMAKE_C_FLAGS_RELEASE "-DNDEBUG -O2")
110set(CMAKE_C_FLAGS_DEBUG "-g -O0")
111
112# options
Michal Vaskofb2fb762015-10-27 11:44:32 +0100113option(ENABLE_SSH "Enable NETCONF over SSH support (via libssh)" ON)
Michal Vasko061dc802016-02-29 10:15:28 +0100114option(ENABLE_TLS "Enable NETCONF over TLS support (via OpenSSL)" ON)
Michal Vasko3d865d22016-01-28 16:00:53 +0100115option(ENABLE_DNSSEC "Enable support for SSHFP retrieval using DNSSEC for SSH (requires OpenSSL and libval)" OFF)
Michal Vaskof471fa02017-02-15 10:48:12 +0100116set(READ_INACTIVE_TIMEOUT 20 CACHE STRING "Maximum number of seconds waiting for new data once some data have arrived")
117set(READ_ACTIVE_TIMEOUT 300 CACHE STRING "Maximum number of seconds for receiving a full message")
118set(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 +0200119set(TIMEOUT_STEP 100 CACHE STRING "Number of microseconds tasks are repeated until timeout elapses")
Michal Vasko5a446472020-05-06 12:43:42 +0200120set(YANG_MODULE_DIR "${CMAKE_INSTALL_PREFIX}/share/yang/modules" CACHE STRING "Directory with common YANG modules")
Michal Vasko3d865d22016-01-28 16:00:53 +0100121
122if(ENABLE_DNSSEC AND NOT ENABLE_SSH)
123 message(WARNING "DNSSEC SSHFP retrieval cannot be used without SSH support.")
124 set(ENABLE_DNSSEC OFF)
125endif()
Radek Krejciac6d3472015-10-22 15:47:18 +0200126
Radek Krejci4f2d40d2015-10-08 12:55:01 +0200127# source files
Radek Krejci183f7e72015-09-01 17:25:47 +0200128set(libsrc
Michal Vasko3d865d22016-01-28 16:00:53 +0100129 src/io.c
130 src/log.c
131 src/messages_client.c
132 src/messages_server.c
133 src/session.c
134 src/session_client.c
Michal Vaskod7fb6df2021-05-19 11:27:35 +0200135 src/session_server.c)
Radek Krejci183f7e72015-09-01 17:25:47 +0200136
Michal Vaskofb2fb762015-10-27 11:44:32 +0100137if(ENABLE_SSH)
Claus Klein22091912020-01-20 13:45:47 +0100138 list(APPEND libsrc
Michal Vasko3d865d22016-01-28 16:00:53 +0100139 src/session_client_ssh.c
140 src/session_server_ssh.c)
Radek Krejci53691be2016-02-22 13:58:37 +0100141 set(SSH_MACRO "#ifndef NC_ENABLED_SSH\n#define NC_ENABLED_SSH\n#endif")
Radek Krejciac6d3472015-10-22 15:47:18 +0200142endif()
143
Radek Krejci9f03b482015-10-22 16:02:10 +0200144if(ENABLE_TLS)
Claus Klein22091912020-01-20 13:45:47 +0100145 list(APPEND libsrc
Michal Vasko3d865d22016-01-28 16:00:53 +0100146 src/session_client_tls.c
147 src/session_server_tls.c)
Radek Krejci53691be2016-02-22 13:58:37 +0100148 set(TLS_MACRO "#ifndef NC_ENABLED_TLS\n#define NC_ENABLED_TLS\n#endif")
Radek Krejci9f03b482015-10-22 16:02:10 +0200149endif()
150
Radek Krejci183f7e72015-09-01 17:25:47 +0200151set(headers
Claus Klein22091912020-01-20 13:45:47 +0100152 ${PROJECT_BINARY_DIR}/src/config.h
Michal Vasko3d865d22016-01-28 16:00:53 +0100153 src/log.h
154 src/netconf.h
155 src/session.h
156 src/messages_client.h
157 src/messages_server.h
158 src/session_client.h
Michal Vasko45f298f2016-01-29 10:26:26 +0100159 src/session_client_ch.h
160 src/session_server.h
161 src/session_server_ch.h)
Radek Krejci183f7e72015-09-01 17:25:47 +0200162
Michal Vasko5eb648d2021-05-26 09:11:52 +0200163# files to generate doxygen from
164set(doxy_files
165 src/libnetconf.h
166 src/log.h
167 src/netconf.h
168 src/session.h
169 src/messages_client.h
170 src/messages_server.h
171 src/session_client.h
172 src/session_client_ch.h
173 src/session_server.h
174 src/session_server_ch.h)
175
Michal Vaskob0e3ec42021-05-26 09:48:31 +0200176# source files to be covered by the 'format' target
177set(format_sources
178 compat/*.c
179 compat/*.h*
180 src/*.c
181 src/*.h
182 tests/*.c
183 tests/client/*.c)
184
Radek Krejci0a14da02021-05-24 22:27:28 +0200185if("${BUILD_TYPE_UPPER}" STREQUAL "DOCONLY")
Michal Vasko4e6d3242021-05-26 09:13:24 +0200186 gen_doc("${doxy_files}" ${LIBNETCONF2_VERSION} ${LIBNETCONF2_DESCRIPTION} "")
Radek Krejci0a14da02021-05-24 22:27:28 +0200187 return()
188endif()
189
Michal Vasko9e8ac262020-04-07 13:06:45 +0200190# use compat
191use_compat()
192
Claus Klein22091912020-01-20 13:45:47 +0100193# netconf2 target
Michal Vasko7a20d2e2021-05-19 16:40:23 +0200194add_library(netconf2 SHARED ${libsrc} ${compatsrc})
Michal Vaskod8536552020-04-21 14:41:16 +0200195set_target_properties(netconf2 PROPERTIES VERSION ${LIBNETCONF2_SOVERSION_FULL} SOVERSION ${LIBNETCONF2_SOVERSION})
Radek Krejci4f2d40d2015-10-08 12:55:01 +0200196
Michal Vasko5eb648d2021-05-26 09:11:52 +0200197# include repository files with highest priority
198include_directories(${PROJECT_BINARY_DIR}/src)
Radek Krejcice24ab82015-10-08 15:37:02 +0200199
Radek Krejci32898d52016-07-14 17:37:02 +0200200# dependencies - pthread
Michal Vasko73ed9672016-01-29 13:15:15 +0100201set(CMAKE_THREAD_PREFER_PTHREAD TRUE)
202find_package(Threads REQUIRED)
203target_link_libraries(netconf2 ${CMAKE_THREAD_LIBS_INIT})
204
Radek Krejci28472922016-07-15 11:51:16 +0200205# check availability for some pthread functions
Radek Krejci32898d52016-07-14 17:37:02 +0200206set(CMAKE_REQUIRED_LIBRARIES pthread)
Michal Vasko7ae909a2018-11-09 09:51:42 +0100207check_include_file(stdatomic.h HAVE_STDATOMIC)
Rosen Penevef2f3ac2019-07-15 18:15:28 -0700208check_function_exists(pthread_rwlockattr_setkind_np HAVE_PTHREAD_RWLOCKATTR_SETKIND_NP)
Radek Krejci32898d52016-07-14 17:37:02 +0200209
Radek Krejci4f2d40d2015-10-08 12:55:01 +0200210# dependencies - openssl
Radek Krejci5c69cdf2017-05-26 16:29:29 +0200211if(ENABLE_TLS OR ENABLE_DNSSEC OR ENABLE_SSH)
Michal Vasko3d865d22016-01-28 16:00:53 +0100212 find_package(OpenSSL REQUIRED)
Claus Klein22091912020-01-20 13:45:47 +0100213 if(ENABLE_TLS)
214 message(STATUS "OPENSSL found, required for TLS")
Michal Vasko5eb648d2021-05-26 09:11:52 +0200215 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DNC_ENABLED_TLS")
Michal Vasko3d865d22016-01-28 16:00:53 +0100216 endif()
Claus Klein22091912020-01-20 13:45:47 +0100217
Michal Vasko3d865d22016-01-28 16:00:53 +0100218 target_link_libraries(netconf2 ${OPENSSL_LIBRARIES})
219 include_directories(${OPENSSL_INCLUDE_DIR})
220endif()
221
Michal Vasko474d3732017-09-27 13:57:00 +0200222# dependencies - libssh
223if(ENABLE_SSH)
Michal Vasko819598b2020-07-29 10:05:11 +0200224 find_package(LibSSH 0.7.1 REQUIRED)
Michal Vaskoed4a4522020-05-19 16:46:12 +0200225 if(LIBSSH_VERSION VERSION_EQUAL 0.9.3 OR LIBSSH_VERSION VERSION_EQUAL 0.9.4)
226 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 +0100227 endif()
Claus Klein22091912020-01-20 13:45:47 +0100228
Michal Vaskoed4a4522020-05-19 16:46:12 +0200229 target_link_libraries(netconf2 ${LIBSSH_LIBRARIES})
230 list(APPEND CMAKE_REQUIRED_LIBRARIES ${LIBSSH_LIBRARIES})
Michal Vasko474d3732017-09-27 13:57:00 +0200231 include_directories(${LIBSSH_INCLUDE_DIRS})
Michal Vasko5eb648d2021-05-26 09:11:52 +0200232 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DNC_ENABLED_SSH")
Michal Vasko71514b32020-04-07 13:36:51 +0200233
234 # crypt
apropp-molex4e903c32020-04-20 03:06:58 -0400235 if(NOT ${CMAKE_SYSTEM_NAME} MATCHES "QNX")
236 target_link_libraries(netconf2 -lcrypt)
237 list(APPEND CMAKE_REQUIRED_LIBRARIES crypt)
238 else()
239 target_link_libraries(netconf2 -llogin)
240 list(APPEND CMAKE_REQUIRED_LIBRARIES login)
241 endif()
Michal Vasko474d3732017-09-27 13:57:00 +0200242endif()
243
Michal Vasko73ed9672016-01-29 13:15:15 +0100244# dependencies - libval
Claus Klein22091912020-01-20 13:45:47 +0100245if(ENABLE_DNSSEC)
Michal Vasko3d865d22016-01-28 16:00:53 +0100246 find_package(LibVAL REQUIRED)
Michal Vasko5eb648d2021-05-26 09:11:52 +0200247 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DENABLE_DNSSEC")
Michal Vasko3d865d22016-01-28 16:00:53 +0100248 target_link_libraries(netconf2 ${LIBVAL_LIBRARIES})
249 include_directories(${LIBVAL_INCLUDE_DIRS})
Radek Krejci4f2d40d2015-10-08 12:55:01 +0200250endif()
251
252# dependencies - libyang
Michal Vasko429a7472021-04-15 10:00:28 +0200253find_package(LibYANG ${LIBYANG_DEP_SOVERSION_MAJOR} REQUIRED)
Radek Krejci4f2d40d2015-10-08 12:55:01 +0200254target_link_libraries(netconf2 ${LIBYANG_LIBRARIES})
255include_directories(${LIBYANG_INCLUDE_DIRS})
256
apropp-molex4e903c32020-04-20 03:06:58 -0400257# header file compatibility - shadow.h and crypt.h
258check_include_file("shadow.h" HAVE_SHADOW)
259check_include_file("crypt.h" HAVE_CRYPT)
260
261# function compatibility - getpeereid on QNX
262if(${CMAKE_SYSTEM_NAME} MATCHES "QNX")
263 target_link_libraries(netconf2 -lsocket)
264 list(APPEND CMAKE_REQUIRED_LIBRARIES socket)
265 list(REMOVE_ITEM CMAKE_REQUIRED_LIBRARIES pthread)
266 list(APPEND CMAKE_REQUIRED_DEFINITIONS -D_QNX_SOURCE)
267 check_symbol_exists(getpeereid "sys/types.h;unistd.h" HAVE_GETPEEREID)
268 list(REMOVE_ITEM CMAKE_REQUIRED_DEFINITIONS -D_QNX_SOURCE)
269endif()
270
Michal Vasko5eb648d2021-05-26 09:11:52 +0200271# generate files
272configure_file("${PROJECT_SOURCE_DIR}/src/config.h.in" "${PROJECT_BINARY_DIR}/src/config.h" ESCAPE_QUOTES @ONLY)
273configure_file(nc_client.h.in nc_client.h)
274configure_file(nc_server.h.in nc_server.h)
275
Radek Krejci183f7e72015-09-01 17:25:47 +0200276# install library
Jan Kundrátb78cdfc2016-11-04 17:11:24 +0100277install(TARGETS netconf2 DESTINATION ${CMAKE_INSTALL_LIBDIR})
Radek Krejci183f7e72015-09-01 17:25:47 +0200278
279# install headers
Jan Kundrátb78cdfc2016-11-04 17:11:24 +0100280install(FILES ${CMAKE_CURRENT_BINARY_DIR}/nc_client.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR})
281install(FILES ${CMAKE_CURRENT_BINARY_DIR}/nc_server.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR})
Michal Vasko5a446472020-05-06 12:43:42 +0200282install(FILES ${headers} DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/libnetconf2)
Radek Krejci14b14032015-10-21 15:19:43 +0200283
Michal Vasko6779d182016-02-17 14:36:36 +0100284# install pkg-config file
285find_package(PkgConfig)
286if(PKG_CONFIG_FOUND)
287 configure_file("libnetconf2.pc.in" "libnetconf2.pc" @ONLY)
Jan Kundrátb78cdfc2016-11-04 17:11:24 +0100288 install(FILES "${CMAKE_CURRENT_BINARY_DIR}/libnetconf2.pc" DESTINATION "${CMAKE_INSTALL_LIBDIR}/pkgconfig")
Michal Vasko6779d182016-02-17 14:36:36 +0100289 # check that pkg-config includes the used path
290 execute_process(COMMAND ${PKG_CONFIG_EXECUTABLE} --variable pc_path pkg-config RESULT_VARIABLE RETURN OUTPUT_VARIABLE PC_PATH ERROR_QUIET)
291 if(RETURN EQUAL 0)
Jan Kundrátb78cdfc2016-11-04 17:11:24 +0100292 string(REGEX MATCH "${CMAKE_INSTALL_LIBDIR}/pkgconfig" SUBSTR "${PC_PATH}")
Michal Vasko6779d182016-02-17 14:36:36 +0100293 string(LENGTH "${SUBSTR}" SUBSTR_LEN)
294 if(SUBSTR_LEN EQUAL 0)
Jan Kundrátb78cdfc2016-11-04 17:11:24 +0100295 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 +0100296 endif()
297 endif()
298endif()
299
Michal Vaskob0e3ec42021-05-26 09:48:31 +0200300if ("${BUILD_TYPE_UPPER}" STREQUAL "DEBUG")
301 # enable before adding tests to let them detect that format checking is available - one of the tests is format checking
302 source_format_enable()
303endif()
304
305# source files to be covered by the 'format' target and a test with 'format-check' target
306source_format(${format_sources})
307
Radek Krejcice24ab82015-10-08 15:37:02 +0200308if(ENABLE_VALGRIND_TESTS)
Michal Vasko3d865d22016-01-28 16:00:53 +0100309 set(ENABLE_BUILD_TESTS ON)
Radek Krejcice24ab82015-10-08 15:37:02 +0200310endif()
311
312if(ENABLE_BUILD_TESTS)
Radek Krejcieaa06722016-02-26 14:27:32 +0100313 find_package(CMocka 1.0.0)
314 if(CMOCKA_FOUND)
315 enable_testing()
316 add_subdirectory(tests)
Claus Klein22091912020-01-20 13:45:47 +0100317 endif()
Radek Krejcice24ab82015-10-08 15:37:02 +0200318endif()
319
Michal Vaskob0e3ec42021-05-26 09:48:31 +0200320# generate doxygen documentation for libnetconf2 API
321gen_doc("${doxy_files}" ${LIBNETCONF2_VERSION} ${LIBNETCONF2_DESCRIPTION} "")
322
Radek Krejci183f7e72015-09-01 17:25:47 +0200323# clean cmake cache
324add_custom_target(cleancache
325 COMMAND make clean
326 COMMAND find . -iname '*cmake*' -not -name CMakeLists.txt -exec rm -rf {} +
327 COMMAND rm -rf Makefile Doxyfile
328 WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR})
Bi-Ruei, Chiuf5faf832019-09-21 20:15:59 +0800329
330# uninstall
331add_custom_target(uninstall "${CMAKE_COMMAND}" -P "${CMAKE_MODULE_PATH}/uninstall.cmake")