Michal Vasko | 8e08c96 | 2016-02-09 14:09:11 +0100 | [diff] [blame] | 1 | cmake_minimum_required(VERSION 2.6) |
Jan Kundrát | b78cdfc | 2016-11-04 17:11:24 +0100 | [diff] [blame] | 2 | project(libnetconf2 C) |
| 3 | include(GNUInstallDirs) |
Michal Vasko | 9aa3c6a | 2018-11-12 08:50:10 +0100 | [diff] [blame] | 4 | include(CheckFunctionExists) |
Michal Vasko | 32af614 | 2019-01-23 09:30:42 +0100 | [diff] [blame] | 5 | include(CheckCSourceCompiles) |
Michal Vasko | 352c390 | 2018-11-12 09:16:59 +0100 | [diff] [blame] | 6 | include(CheckIncludeFile) |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 7 | |
Radek Krejci | 4f2d40d | 2015-10-08 12:55:01 +0200 | [diff] [blame] | 8 | # include custom Modules |
| 9 | set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/CMakeModules/") |
| 10 | |
Michal Vasko | 6779d18 | 2016-02-17 14:36:36 +0100 | [diff] [blame] | 11 | set(LIBNETCONF2_DESCRIPTION "NETCONF server and client library in C.") |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 12 | |
| 13 | # check the supported platform |
| 14 | if(NOT UNIX) |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 15 | message(FATAL_ERROR "Only *nix like systems are supported.") |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 16 | endif() |
| 17 | |
Michal Vasko | 63b52fc | 2018-02-16 10:08:17 +0100 | [diff] [blame] | 18 | # osx specific |
| 19 | set(CMAKE_MACOSX_RPATH TRUE) |
| 20 | |
Jan Kundrát | b78cdfc | 2016-11-04 17:11:24 +0100 | [diff] [blame] | 21 | set(INCLUDE_INSTALL_SUBDIR ${CMAKE_INSTALL_INCLUDEDIR}/libnetconf2) |
| 22 | set(DATA_INSTALL_DIR ${CMAKE_INSTALL_DATADIR}/libnetconf2) |
Michal Vasko | d5f09ba | 2016-02-23 15:44:58 +0100 | [diff] [blame] | 23 | |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 24 | # set default build type if not specified by user |
| 25 | if(NOT CMAKE_BUILD_TYPE) |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 26 | set(CMAKE_BUILD_TYPE debug) |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 27 | endif() |
| 28 | |
Andrew Langefeld | 6ed922d | 2018-09-12 14:08:32 -0500 | [diff] [blame] | 29 | set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -fvisibility=hidden -std=gnu11") |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 30 | set(CMAKE_C_FLAGS_RELEASE "-O2 -DNDEBUG") |
PavolVican | 384786e | 2017-07-12 15:31:20 +0200 | [diff] [blame] | 31 | set(CMAKE_C_FLAGS_PACKAGE "-g -O2 -DNDEBUG") |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 32 | set(CMAKE_C_FLAGS_DEBUG "-g -O0") |
| 33 | |
Michal Vasko | 08d5cde | 2019-07-10 14:34:55 +0200 | [diff] [blame] | 34 | # Version of the project |
| 35 | # Generic version of not only the library. Major version is reserved for really big changes of the project, |
| 36 | # minor version changes with added functionality (new tool, functionality of the tool or library, ...) and |
| 37 | # micro version is changed with a set of small changes or bugfixes anywhere in the project. |
| 38 | set(LIBNETCONF2_MAJOR_VERSION 1) |
| 39 | set(LIBNETCONF2_MINOR_VERSION 0) |
Michal Vasko | 94ae292 | 2019-07-10 16:13:14 +0200 | [diff] [blame^] | 40 | set(LIBNETCONF2_MICRO_VERSION 1) |
Radek Krejci | 4f2d40d | 2015-10-08 12:55:01 +0200 | [diff] [blame] | 41 | set(LIBNETCONF2_VERSION ${LIBNETCONF2_MAJOR_VERSION}.${LIBNETCONF2_MINOR_VERSION}.${LIBNETCONF2_MICRO_VERSION}) |
Michal Vasko | 08d5cde | 2019-07-10 14:34:55 +0200 | [diff] [blame] | 42 | |
| 43 | # Version of the library |
| 44 | # Major version is changed with every backward non-compatible API/ABI change in libyang, minor version changes |
| 45 | # with backward compatible change and micro version is connected with any internal change of the library. |
| 46 | set(LIBNETCONF2_MAJOR_SOVERSION 1) |
| 47 | set(LIBNETCONF2_MINOR_SOVERSION 0) |
Michal Vasko | f3368d0 | 2019-07-10 16:12:39 +0200 | [diff] [blame] | 48 | set(LIBNETCONF2_MICRO_SOVERSION 1) |
Michal Vasko | 08d5cde | 2019-07-10 14:34:55 +0200 | [diff] [blame] | 49 | set(LIBNETCONF2_SOVERSION_FULL ${LIBNETCONF2_MAJOR_SOVERSION}.${LIBNETCONF2_MINOR_SOVERSION}.${LIBNETCONF2_MICRO_SOVERSION}) |
| 50 | set(LIBNETCONF2_SOVERSION ${LIBNETCONF2_MAJOR_SOVERSION}) |
Radek Krejci | 4f2d40d | 2015-10-08 12:55:01 +0200 | [diff] [blame] | 51 | |
Radek Krejci | ac6d347 | 2015-10-22 15:47:18 +0200 | [diff] [blame] | 52 | # build options |
Michal Vasko | fb2fb76 | 2015-10-27 11:44:32 +0100 | [diff] [blame] | 53 | option(ENABLE_SSH "Enable NETCONF over SSH support (via libssh)" ON) |
Michal Vasko | 061dc80 | 2016-02-29 10:15:28 +0100 | [diff] [blame] | 54 | option(ENABLE_TLS "Enable NETCONF over TLS support (via OpenSSL)" ON) |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 55 | option(ENABLE_DNSSEC "Enable support for SSHFP retrieval using DNSSEC for SSH (requires OpenSSL and libval)" OFF) |
Radek Krejci | c61f0b4 | 2017-06-07 13:21:41 +0200 | [diff] [blame] | 56 | option(ENABLE_PYTHON "Include bindings for Python 3" OFF) |
Michal Vasko | f471fa0 | 2017-02-15 10:48:12 +0100 | [diff] [blame] | 57 | set(READ_INACTIVE_TIMEOUT 20 CACHE STRING "Maximum number of seconds waiting for new data once some data have arrived") |
| 58 | set(READ_ACTIVE_TIMEOUT 300 CACHE STRING "Maximum number of seconds for receiving a full message") |
| 59 | set(MAX_PSPOLL_THREAD_COUNT 6 CACHE STRING "Maximum number of threads that could simultaneously access a ps_poll structure") |
Michal Vasko | ff7e356 | 2018-02-15 13:41:22 +0100 | [diff] [blame] | 60 | set(SCHEMAS_DIR "${CMAKE_INSTALL_PREFIX}/${DATA_INSTALL_DIR}" CACHE STRING "Directory with internal lnc2 schemas") |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 61 | |
| 62 | if(ENABLE_DNSSEC AND NOT ENABLE_SSH) |
| 63 | message(WARNING "DNSSEC SSHFP retrieval cannot be used without SSH support.") |
| 64 | set(ENABLE_DNSSEC OFF) |
| 65 | endif() |
Radek Krejci | ac6d347 | 2015-10-22 15:47:18 +0200 | [diff] [blame] | 66 | |
PavolVican | 384786e | 2017-07-12 15:31:20 +0200 | [diff] [blame] | 67 | # package options |
| 68 | find_program (DEB_BUILDER NAMES debuild) |
| 69 | find_program (RPM_BUILDER NAMES rpmbuild) |
| 70 | |
| 71 | if (NOT DEFINED ENV{TRAVIS_BRANCH}) |
| 72 | execute_process(COMMAND "git" "rev-parse" "--abbrev-ref" "HEAD" |
| 73 | OUTPUT_VARIABLE GIT_BRANCH |
| 74 | OUTPUT_STRIP_TRAILING_WHITESPACE |
| 75 | ERROR_QUIET |
| 76 | ) |
| 77 | if (NOT GIT_BRANCH) |
| 78 | set(ENV{TRAVIS_BRANCH} "master") |
| 79 | else() |
| 80 | if (GIT_BRANCH MATCHES "master|devel") |
| 81 | set(ENV{TRAVIS_BRANCH} ${GIT_BRANCH}) |
| 82 | else() |
| 83 | set(ENV{TRAVIS_BRANCH} "master") |
| 84 | endif() |
| 85 | endif() |
| 86 | set(GIT_BRANCH $ENV{TRAVIS_BRANCH}) |
| 87 | endif() |
| 88 | |
| 89 | if ($ENV{TRAVIS_BRANCH} STREQUAL "master") |
| 90 | set(PACKAGE_NAME "libnetconf2") |
| 91 | set(BRANCH "master") |
| 92 | set(BUILD_TYPE "Package") |
| 93 | set(CONFLICT_PACKAGE_NAME "libnetconf2-experimental") |
| 94 | set(COMPAT_PACKAGES "") |
| 95 | else () |
| 96 | set(PACKAGE_NAME "libnetconf2-experimental") |
| 97 | set(BRANCH "devel") |
| 98 | set(BUILD_TYPE "debug") |
| 99 | set(CONFLICT_PACKAGE_NAME "libnetconf2") |
| 100 | set(COMPAT_PACKAGES "-experimental") |
| 101 | endif() |
| 102 | # change version in config files |
| 103 | configure_file(${PROJECT_SOURCE_DIR}/packages/libnetconf2.spec.in ${PROJECT_BINARY_DIR}/build-packages/libnetconf2.spec) |
| 104 | configure_file(${PROJECT_SOURCE_DIR}/packages/libnetconf2.dsc.in ${PROJECT_BINARY_DIR}/build-packages/libnetconf2.dsc) |
| 105 | configure_file(${PROJECT_SOURCE_DIR}/packages/debian.control.in ${PROJECT_BINARY_DIR}/build-packages/debian.control @ONLY) |
| 106 | configure_file(${PROJECT_SOURCE_DIR}/packages/debian.rules.in ${PROJECT_BINARY_DIR}/build-packages/debian.rules) |
| 107 | |
| 108 | if (NOT DEB_BUILDER) |
| 109 | message(WARNING "Missing tools (devscripts, debhelper package) for building deb package.\nYou won't be able to generate deb package from source code.\nCompiling libnetconf2 should still works fine.") |
| 110 | else () |
| 111 | # target for local build deb package |
| 112 | add_custom_target(build-deb |
| 113 | WORKING_DIRECTORY ${PROJECT_BINARY_DIR} |
| 114 | COMMAND build-packages/local-deb.sh |
| 115 | ) |
| 116 | configure_file(${PROJECT_SOURCE_DIR}/packages/local-deb.sh.in ${PROJECT_BINARY_DIR}/build-packages/local-deb.sh @ONLY) |
| 117 | endif() |
| 118 | |
| 119 | if (NOT RPM_BUILDER) |
Michal Vasko | 08d5cde | 2019-07-10 14:34:55 +0200 | [diff] [blame] | 120 | message(WARNING "Missing tools (rpm package) for building rpm package. \nYou won't be able to generate rpm package from source code.\nCompiling libnetconf2 should still work fine.") |
PavolVican | 384786e | 2017-07-12 15:31:20 +0200 | [diff] [blame] | 121 | else () |
| 122 | # target for local build rpm package |
| 123 | string(REPLACE ${PROJECT_SOURCE_DIR} "." EXCLUDE_BUILD_DIR ${PROJECT_BINARY_DIR}) |
| 124 | add_custom_target(build-rpm |
| 125 | WORKING_DIRECTORY ${PROJECT_BINARY_DIR} |
| 126 | COMMAND build-packages/local-rpm.sh |
| 127 | ) |
| 128 | configure_file(${PROJECT_SOURCE_DIR}/packages/local-rpm.sh.in ${PROJECT_BINARY_DIR}/build-packages/local-rpm.sh @ONLY) |
| 129 | endif() |
| 130 | |
Jan Kundrát | cf15d6c | 2017-10-26 18:07:56 +0200 | [diff] [blame] | 131 | include_directories(${PROJECT_BINARY_DIR}/src) |
| 132 | |
Radek Krejci | 4f2d40d | 2015-10-08 12:55:01 +0200 | [diff] [blame] | 133 | # source files |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 134 | set(libsrc |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 135 | src/io.c |
| 136 | src/log.c |
| 137 | src/messages_client.c |
| 138 | src/messages_server.c |
| 139 | src/session.c |
| 140 | src/session_client.c |
| 141 | src/session_server.c |
| 142 | src/time.c) |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 143 | |
Michal Vasko | fb2fb76 | 2015-10-27 11:44:32 +0100 | [diff] [blame] | 144 | if(ENABLE_SSH) |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 145 | set(libsrc ${libsrc} |
| 146 | src/session_client_ssh.c |
| 147 | src/session_server_ssh.c) |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 148 | 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] | 149 | endif() |
| 150 | |
Radek Krejci | 9f03b48 | 2015-10-22 16:02:10 +0200 | [diff] [blame] | 151 | if(ENABLE_TLS) |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 152 | set(libsrc ${libsrc} |
| 153 | src/session_client_tls.c |
| 154 | src/session_server_tls.c) |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 155 | 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] | 156 | endif() |
| 157 | |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 158 | set(headers |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 159 | src/log.h |
| 160 | src/netconf.h |
| 161 | src/session.h |
| 162 | src/messages_client.h |
| 163 | src/messages_server.h |
| 164 | src/session_client.h |
Michal Vasko | 45f298f | 2016-01-29 10:26:26 +0100 | [diff] [blame] | 165 | src/session_client_ch.h |
| 166 | src/session_server.h |
| 167 | src/session_server_ch.h) |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 168 | |
Radek Krejci | 4f2d40d | 2015-10-08 12:55:01 +0200 | [diff] [blame] | 169 | # libnetconf2 target |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 170 | add_library(netconf2 SHARED ${libsrc}) |
Michal Vasko | 08d5cde | 2019-07-10 14:34:55 +0200 | [diff] [blame] | 171 | set_target_properties(netconf2 PROPERTIES VERSION ${LIBNETCONF2_VERSION} SOVERSION ${LIBNETCONF2_SOVERSION_FULL}) |
Radek Krejci | 4f2d40d | 2015-10-08 12:55:01 +0200 | [diff] [blame] | 172 | |
PavolVican | 384786e | 2017-07-12 15:31:20 +0200 | [diff] [blame] | 173 | if((CMAKE_BUILD_TYPE STREQUAL debug) OR (CMAKE_BUILD_TYPE STREQUAL Package)) |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 174 | option(ENABLE_BUILD_TESTS "Build tests" ON) |
| 175 | option(ENABLE_VALGRIND_TESTS "Build tests with valgrind" ON) |
Radek Krejci | ce24ab8 | 2015-10-08 15:37:02 +0200 | [diff] [blame] | 176 | else() |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 177 | option(ENABLE_BUILD_TESTS "Build tests" OFF) |
| 178 | option(ENABLE_VALGRIND_TESTS "Build tests with valgrind" OFF) |
Radek Krejci | ce24ab8 | 2015-10-08 15:37:02 +0200 | [diff] [blame] | 179 | endif() |
| 180 | |
Radek Krejci | 32898d5 | 2016-07-14 17:37:02 +0200 | [diff] [blame] | 181 | # dependencies - pthread |
Michal Vasko | 73ed967 | 2016-01-29 13:15:15 +0100 | [diff] [blame] | 182 | set(CMAKE_THREAD_PREFER_PTHREAD TRUE) |
| 183 | find_package(Threads REQUIRED) |
| 184 | target_link_libraries(netconf2 ${CMAKE_THREAD_LIBS_INIT}) |
| 185 | |
Radek Krejci | 2847292 | 2016-07-15 11:51:16 +0200 | [diff] [blame] | 186 | # check availability for some pthread functions |
Radek Krejci | 32898d5 | 2016-07-14 17:37:02 +0200 | [diff] [blame] | 187 | set(CMAKE_REQUIRED_LIBRARIES pthread) |
Michal Vasko | 7ae909a | 2018-11-09 09:51:42 +0100 | [diff] [blame] | 188 | check_include_file(stdatomic.h HAVE_STDATOMIC) |
Radek Krejci | 2847292 | 2016-07-15 11:51:16 +0200 | [diff] [blame] | 189 | check_function_exists(pthread_mutex_timedlock HAVE_PTHREAD_MUTEX_TIMEDLOCK) |
Radek Krejci | 32898d5 | 2016-07-14 17:37:02 +0200 | [diff] [blame] | 190 | |
Radek Krejci | 4f2d40d | 2015-10-08 12:55:01 +0200 | [diff] [blame] | 191 | # dependencies - openssl |
Radek Krejci | 5c69cdf | 2017-05-26 16:29:29 +0200 | [diff] [blame] | 192 | if(ENABLE_TLS OR ENABLE_DNSSEC OR ENABLE_SSH) |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 193 | find_package(OpenSSL REQUIRED) |
| 194 | if (ENABLE_TLS) |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 195 | set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DNC_ENABLED_TLS") |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 196 | endif() |
| 197 | target_link_libraries(netconf2 ${OPENSSL_LIBRARIES}) |
| 198 | include_directories(${OPENSSL_INCLUDE_DIR}) |
| 199 | endif() |
| 200 | |
Michal Vasko | 474d373 | 2017-09-27 13:57:00 +0200 | [diff] [blame] | 201 | # dependencies - libssh |
| 202 | if(ENABLE_SSH) |
Michal Vasko | 8dcaa88 | 2017-10-19 14:28:42 +0200 | [diff] [blame] | 203 | find_package(LibSSH 0.7.0 REQUIRED) |
Michal Vasko | 474d373 | 2017-09-27 13:57:00 +0200 | [diff] [blame] | 204 | set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DNC_ENABLED_SSH") |
Michal Vasko | 82c1e30 | 2018-08-22 16:34:00 +0200 | [diff] [blame] | 205 | if(LibSSH_VERSION VERSION_LESS 0.8.0) |
David Sedlák | b3914fe | 2018-08-20 15:03:25 +0200 | [diff] [blame] | 206 | target_link_libraries(netconf2 "-L${LIBSSH_LIBRARY_DIR}" -lssh -lssh_threads -lcrypt) |
| 207 | else() |
| 208 | target_link_libraries(netconf2 "-L${LIBSSH_LIBRARY_DIR}" -lssh -lcrypt) |
Michal Vasko | 32af614 | 2019-01-23 09:30:42 +0100 | [diff] [blame] | 209 | set(CMAKE_REQUIRED_LIBRARIES "ssh;crypt") |
David Sedlák | b3914fe | 2018-08-20 15:03:25 +0200 | [diff] [blame] | 210 | endif() |
Michal Vasko | 474d373 | 2017-09-27 13:57:00 +0200 | [diff] [blame] | 211 | include_directories(${LIBSSH_INCLUDE_DIRS}) |
Michal Vasko | 32af614 | 2019-01-23 09:30:42 +0100 | [diff] [blame] | 212 | |
| 213 | set(LIBSSH_SESSION_OPTION_CHECK_CODE |
| 214 | "#include <libssh/libssh.h> |
| 215 | int main(void) { |
| 216 | ssh_session sess; |
| 217 | ssh_options_set(sess, SSH_OPTIONS_PUBLICKEY_ACCEPTED_TYPES, NULL); |
| 218 | return 0; |
| 219 | }" |
| 220 | ) |
Michal Vasko | 32af614 | 2019-01-23 09:30:42 +0100 | [diff] [blame] | 221 | check_c_source_compiles("${LIBSSH_SESSION_OPTION_CHECK_CODE}" HAVE_LIBSSH_OPTIONS_PUBLICKEY_ACCEPTED_TYPES) |
Michal Vasko | 474d373 | 2017-09-27 13:57:00 +0200 | [diff] [blame] | 222 | endif() |
| 223 | |
Michal Vasko | 73ed967 | 2016-01-29 13:15:15 +0100 | [diff] [blame] | 224 | # dependencies - libval |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 225 | if (ENABLE_DNSSEC) |
| 226 | find_package(LibVAL REQUIRED) |
| 227 | set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DENABLE_DNSSEC") |
| 228 | target_link_libraries(netconf2 ${LIBVAL_LIBRARIES}) |
| 229 | include_directories(${LIBVAL_INCLUDE_DIRS}) |
Radek Krejci | 4f2d40d | 2015-10-08 12:55:01 +0200 | [diff] [blame] | 230 | endif() |
| 231 | |
| 232 | # dependencies - libyang |
| 233 | find_package(LibYANG REQUIRED) |
| 234 | target_link_libraries(netconf2 ${LIBYANG_LIBRARIES}) |
| 235 | include_directories(${LIBYANG_INCLUDE_DIRS}) |
| 236 | |
Michal Vasko | 51cda3c | 2016-01-29 14:41:26 +0100 | [diff] [blame] | 237 | # generate doxygen documentation for libnetconf2 API |
| 238 | find_package(Doxygen) |
| 239 | if(DOXYGEN_FOUND) |
| 240 | set(DOXYGEN_SKIP_DOT TRUE) |
| 241 | add_custom_target(doc |
| 242 | COMMAND ${DOXYGEN_EXECUTABLE} ${CMAKE_BINARY_DIR}/Doxyfile |
| 243 | WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}) |
| 244 | configure_file(Doxyfile.in Doxyfile) |
| 245 | endif() |
| 246 | |
Radek Krejci | c61f0b4 | 2017-06-07 13:21:41 +0200 | [diff] [blame] | 247 | # Python bindings |
| 248 | if(ENABLE_PYTHON) |
| 249 | add_subdirectory(python) |
| 250 | endif(ENABLE_PYTHON) |
| 251 | |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 252 | # install library |
Jan Kundrát | b78cdfc | 2016-11-04 17:11:24 +0100 | [diff] [blame] | 253 | install(TARGETS netconf2 DESTINATION ${CMAKE_INSTALL_LIBDIR}) |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 254 | |
| 255 | # install headers |
Jan Kundrát | b78cdfc | 2016-11-04 17:11:24 +0100 | [diff] [blame] | 256 | install(FILES ${CMAKE_CURRENT_BINARY_DIR}/nc_client.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}) |
| 257 | install(FILES ${CMAKE_CURRENT_BINARY_DIR}/nc_server.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}) |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 258 | install(FILES ${headers} DESTINATION ${INCLUDE_INSTALL_SUBDIR}) |
| 259 | |
Radek Krejci | 14b1403 | 2015-10-21 15:19:43 +0200 | [diff] [blame] | 260 | # install schemas |
| 261 | install( |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 262 | CODE "file(GLOB yin_schemas \"${CMAKE_SOURCE_DIR}/schemas/*.yin\")" |
Michal Vasko | ed6e0d3 | 2016-02-24 13:28:58 +0100 | [diff] [blame] | 263 | CODE "file(INSTALL \${yin_schemas} DESTINATION ${CMAKE_INSTALL_PREFIX}/${DATA_INSTALL_DIR})" |
Radek Krejci | 14b1403 | 2015-10-21 15:19:43 +0200 | [diff] [blame] | 264 | ) |
| 265 | |
Michal Vasko | 6779d18 | 2016-02-17 14:36:36 +0100 | [diff] [blame] | 266 | # install pkg-config file |
| 267 | find_package(PkgConfig) |
| 268 | if(PKG_CONFIG_FOUND) |
| 269 | configure_file("libnetconf2.pc.in" "libnetconf2.pc" @ONLY) |
Jan Kundrát | b78cdfc | 2016-11-04 17:11:24 +0100 | [diff] [blame] | 270 | 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] | 271 | # check that pkg-config includes the used path |
| 272 | execute_process(COMMAND ${PKG_CONFIG_EXECUTABLE} --variable pc_path pkg-config RESULT_VARIABLE RETURN OUTPUT_VARIABLE PC_PATH ERROR_QUIET) |
| 273 | if(RETURN EQUAL 0) |
Jan Kundrát | b78cdfc | 2016-11-04 17:11:24 +0100 | [diff] [blame] | 274 | string(REGEX MATCH "${CMAKE_INSTALL_LIBDIR}/pkgconfig" SUBSTR "${PC_PATH}") |
Michal Vasko | 6779d18 | 2016-02-17 14:36:36 +0100 | [diff] [blame] | 275 | string(LENGTH "${SUBSTR}" SUBSTR_LEN) |
| 276 | if(SUBSTR_LEN EQUAL 0) |
Jan Kundrát | b78cdfc | 2016-11-04 17:11:24 +0100 | [diff] [blame] | 277 | 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] | 278 | endif() |
| 279 | endif() |
| 280 | endif() |
| 281 | |
Radek Krejci | ce24ab8 | 2015-10-08 15:37:02 +0200 | [diff] [blame] | 282 | if(ENABLE_VALGRIND_TESTS) |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 283 | set(ENABLE_BUILD_TESTS ON) |
Radek Krejci | ce24ab8 | 2015-10-08 15:37:02 +0200 | [diff] [blame] | 284 | endif() |
| 285 | |
| 286 | if(ENABLE_BUILD_TESTS) |
Radek Krejci | eaa0672 | 2016-02-26 14:27:32 +0100 | [diff] [blame] | 287 | find_package(CMocka 1.0.0) |
| 288 | if(CMOCKA_FOUND) |
| 289 | enable_testing() |
| 290 | add_subdirectory(tests) |
| 291 | endif(CMOCKA_FOUND) |
Radek Krejci | ce24ab8 | 2015-10-08 15:37:02 +0200 | [diff] [blame] | 292 | endif() |
| 293 | |
Jan Kundrát | cf15d6c | 2017-10-26 18:07:56 +0200 | [diff] [blame] | 294 | configure_file("${PROJECT_SOURCE_DIR}/src/config.h.in" "${PROJECT_BINARY_DIR}/src/config.h" ESCAPE_QUOTES @ONLY) |
Michal Vasko | 1128e11 | 2015-10-26 15:34:24 +0100 | [diff] [blame] | 295 | configure_file(nc_client.h.in nc_client.h) |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 296 | configure_file(nc_server.h.in nc_server.h) |
Radek Krejci | 14b1403 | 2015-10-21 15:19:43 +0200 | [diff] [blame] | 297 | |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 298 | # clean cmake cache |
| 299 | add_custom_target(cleancache |
| 300 | COMMAND make clean |
| 301 | COMMAND find . -iname '*cmake*' -not -name CMakeLists.txt -exec rm -rf {} + |
| 302 | COMMAND rm -rf Makefile Doxyfile |
| 303 | WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}) |