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) |
Radek Krejci | 32898d5 | 2016-07-14 17:37:02 +0200 | [diff] [blame] | 4 | include (CheckFunctionExists) |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 5 | |
Radek Krejci | 4f2d40d | 2015-10-08 12:55:01 +0200 | [diff] [blame] | 6 | # include custom Modules |
| 7 | set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/CMakeModules/") |
| 8 | |
Michal Vasko | 6779d18 | 2016-02-17 14:36:36 +0100 | [diff] [blame] | 9 | set(LIBNETCONF2_DESCRIPTION "NETCONF server and client library in C.") |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 10 | |
| 11 | # check the supported platform |
| 12 | if(NOT UNIX) |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 13 | message(FATAL_ERROR "Only *nix like systems are supported.") |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 14 | endif() |
| 15 | |
Jan Kundrát | b78cdfc | 2016-11-04 17:11:24 +0100 | [diff] [blame] | 16 | set(INCLUDE_INSTALL_SUBDIR ${CMAKE_INSTALL_INCLUDEDIR}/libnetconf2) |
| 17 | set(DATA_INSTALL_DIR ${CMAKE_INSTALL_DATADIR}/libnetconf2) |
Michal Vasko | d5f09ba | 2016-02-23 15:44:58 +0100 | [diff] [blame] | 18 | |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 19 | # set default build type if not specified by user |
| 20 | if(NOT CMAKE_BUILD_TYPE) |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 21 | set(CMAKE_BUILD_TYPE debug) |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 22 | endif() |
| 23 | |
| 24 | set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -fvisibility=hidden") |
| 25 | set(CMAKE_C_FLAGS_RELEASE "-O2 -DNDEBUG") |
| 26 | set(CMAKE_C_FLAGS_DEBUG "-g -O0") |
| 27 | |
Radek Krejci | 4f2d40d | 2015-10-08 12:55:01 +0200 | [diff] [blame] | 28 | # set version |
| 29 | set(LIBNETCONF2_MAJOR_VERSION 0) |
Radek Krejci | c58c5a2 | 2016-10-07 09:26:11 +0200 | [diff] [blame] | 30 | set(LIBNETCONF2_MINOR_VERSION 8) |
Michal Vasko | c225ff8 | 2016-11-15 11:03:38 +0100 | [diff] [blame] | 31 | set(LIBNETCONF2_MICRO_VERSION 8) |
Radek Krejci | 4f2d40d | 2015-10-08 12:55:01 +0200 | [diff] [blame] | 32 | set(LIBNETCONF2_VERSION ${LIBNETCONF2_MAJOR_VERSION}.${LIBNETCONF2_MINOR_VERSION}.${LIBNETCONF2_MICRO_VERSION}) |
| 33 | set(LIBNETCONF2_SOVERSION ${LIBNETCONF2_MAJOR_VERSION}.${LIBNETCONF2_MINOR_VERSION}) |
| 34 | |
Radek Krejci | ac6d347 | 2015-10-22 15:47:18 +0200 | [diff] [blame] | 35 | # build options |
Michal Vasko | fb2fb76 | 2015-10-27 11:44:32 +0100 | [diff] [blame] | 36 | option(ENABLE_SSH "Enable NETCONF over SSH support (via libssh)" ON) |
Michal Vasko | 061dc80 | 2016-02-29 10:15:28 +0100 | [diff] [blame] | 37 | option(ENABLE_TLS "Enable NETCONF over TLS support (via OpenSSL)" ON) |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 38 | option(ENABLE_DNSSEC "Enable support for SSHFP retrieval using DNSSEC for SSH (requires OpenSSL and libval)" OFF) |
| 39 | |
| 40 | if(ENABLE_DNSSEC AND NOT ENABLE_SSH) |
| 41 | message(WARNING "DNSSEC SSHFP retrieval cannot be used without SSH support.") |
| 42 | set(ENABLE_DNSSEC OFF) |
| 43 | endif() |
Radek Krejci | ac6d347 | 2015-10-22 15:47:18 +0200 | [diff] [blame] | 44 | |
Radek Krejci | 4f2d40d | 2015-10-08 12:55:01 +0200 | [diff] [blame] | 45 | # source files |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 46 | set(libsrc |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 47 | src/io.c |
| 48 | src/log.c |
| 49 | src/messages_client.c |
| 50 | src/messages_server.c |
| 51 | src/session.c |
| 52 | src/session_client.c |
| 53 | src/session_server.c |
| 54 | src/time.c) |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 55 | |
Michal Vasko | fb2fb76 | 2015-10-27 11:44:32 +0100 | [diff] [blame] | 56 | if(ENABLE_SSH) |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 57 | set(libsrc ${libsrc} |
| 58 | src/session_client_ssh.c |
| 59 | src/session_server_ssh.c) |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 60 | 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] | 61 | endif() |
| 62 | |
Radek Krejci | 9f03b48 | 2015-10-22 16:02:10 +0200 | [diff] [blame] | 63 | if(ENABLE_TLS) |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 64 | set(libsrc ${libsrc} |
| 65 | src/session_client_tls.c |
| 66 | src/session_server_tls.c) |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 67 | 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] | 68 | endif() |
| 69 | |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 70 | set(headers |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 71 | src/log.h |
| 72 | src/netconf.h |
| 73 | src/session.h |
| 74 | src/messages_client.h |
| 75 | src/messages_server.h |
| 76 | src/session_client.h |
Michal Vasko | 45f298f | 2016-01-29 10:26:26 +0100 | [diff] [blame] | 77 | src/session_client_ch.h |
| 78 | src/session_server.h |
| 79 | src/session_server_ch.h) |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 80 | |
Radek Krejci | 4f2d40d | 2015-10-08 12:55:01 +0200 | [diff] [blame] | 81 | # libnetconf2 target |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 82 | add_library(netconf2 SHARED ${libsrc}) |
| 83 | set_target_properties(netconf2 PROPERTIES VERSION ${LIBNETCONF2_VERSION} SOVERSION ${LIBNETCONF2_SOVERSION}) |
Radek Krejci | 4f2d40d | 2015-10-08 12:55:01 +0200 | [diff] [blame] | 84 | |
Radek Krejci | ce24ab8 | 2015-10-08 15:37:02 +0200 | [diff] [blame] | 85 | if(CMAKE_BUILD_TYPE STREQUAL debug) |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 86 | option(ENABLE_BUILD_TESTS "Build tests" ON) |
| 87 | option(ENABLE_VALGRIND_TESTS "Build tests with valgrind" ON) |
Radek Krejci | ce24ab8 | 2015-10-08 15:37:02 +0200 | [diff] [blame] | 88 | else() |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 89 | option(ENABLE_BUILD_TESTS "Build tests" OFF) |
| 90 | option(ENABLE_VALGRIND_TESTS "Build tests with valgrind" OFF) |
Radek Krejci | ce24ab8 | 2015-10-08 15:37:02 +0200 | [diff] [blame] | 91 | endif() |
| 92 | |
Radek Krejci | 32898d5 | 2016-07-14 17:37:02 +0200 | [diff] [blame] | 93 | # dependencies - pthread |
Michal Vasko | 73ed967 | 2016-01-29 13:15:15 +0100 | [diff] [blame] | 94 | set(CMAKE_THREAD_PREFER_PTHREAD TRUE) |
| 95 | find_package(Threads REQUIRED) |
| 96 | target_link_libraries(netconf2 ${CMAKE_THREAD_LIBS_INIT}) |
| 97 | |
Radek Krejci | 2847292 | 2016-07-15 11:51:16 +0200 | [diff] [blame] | 98 | # check availability for some pthread functions |
Radek Krejci | 32898d5 | 2016-07-14 17:37:02 +0200 | [diff] [blame] | 99 | set(CMAKE_REQUIRED_LIBRARIES pthread) |
| 100 | check_function_exists(pthread_spin_lock HAVE_SPINLOCK) |
Radek Krejci | 2847292 | 2016-07-15 11:51:16 +0200 | [diff] [blame] | 101 | check_function_exists(pthread_mutex_timedlock HAVE_PTHREAD_MUTEX_TIMEDLOCK) |
Radek Krejci | 32898d5 | 2016-07-14 17:37:02 +0200 | [diff] [blame] | 102 | |
Radek Krejci | 4f2d40d | 2015-10-08 12:55:01 +0200 | [diff] [blame] | 103 | # dependencies - libssh |
Michal Vasko | fb2fb76 | 2015-10-27 11:44:32 +0100 | [diff] [blame] | 104 | if(ENABLE_SSH) |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 105 | find_package(LibSSH 0.6.4 REQUIRED) |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 106 | set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DNC_ENABLED_SSH ${LIBSSH_DEFINITIONS}") |
Michal Vasko | fcb4415 | 2016-09-26 09:33:24 +0200 | [diff] [blame] | 107 | target_link_libraries(netconf2 ${LIBSSH_LIBRARIES} -L${SSH_LIBRARY} -lssh_threads -lcrypt) |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 108 | include_directories(${LIBSSH_INCLUDE_DIRS}) |
Radek Krejci | 4f2d40d | 2015-10-08 12:55:01 +0200 | [diff] [blame] | 109 | endif() |
| 110 | |
| 111 | # dependencies - openssl |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 112 | if(ENABLE_TLS OR ENABLE_DNSSEC) |
| 113 | find_package(OpenSSL REQUIRED) |
| 114 | if (ENABLE_TLS) |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 115 | set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DNC_ENABLED_TLS") |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 116 | endif() |
| 117 | target_link_libraries(netconf2 ${OPENSSL_LIBRARIES}) |
| 118 | include_directories(${OPENSSL_INCLUDE_DIR}) |
| 119 | endif() |
| 120 | |
Michal Vasko | 73ed967 | 2016-01-29 13:15:15 +0100 | [diff] [blame] | 121 | # dependencies - libval |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 122 | if (ENABLE_DNSSEC) |
| 123 | find_package(LibVAL REQUIRED) |
| 124 | set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DENABLE_DNSSEC") |
| 125 | target_link_libraries(netconf2 ${LIBVAL_LIBRARIES}) |
| 126 | include_directories(${LIBVAL_INCLUDE_DIRS}) |
Radek Krejci | 4f2d40d | 2015-10-08 12:55:01 +0200 | [diff] [blame] | 127 | endif() |
| 128 | |
| 129 | # dependencies - libyang |
| 130 | find_package(LibYANG REQUIRED) |
| 131 | target_link_libraries(netconf2 ${LIBYANG_LIBRARIES}) |
| 132 | include_directories(${LIBYANG_INCLUDE_DIRS}) |
| 133 | |
Michal Vasko | 51cda3c | 2016-01-29 14:41:26 +0100 | [diff] [blame] | 134 | # generate doxygen documentation for libnetconf2 API |
| 135 | find_package(Doxygen) |
| 136 | if(DOXYGEN_FOUND) |
| 137 | set(DOXYGEN_SKIP_DOT TRUE) |
| 138 | add_custom_target(doc |
| 139 | COMMAND ${DOXYGEN_EXECUTABLE} ${CMAKE_BINARY_DIR}/Doxyfile |
| 140 | WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}) |
| 141 | configure_file(Doxyfile.in Doxyfile) |
| 142 | endif() |
| 143 | |
Michal Vasko | 6b7c42e | 2016-03-02 15:46:41 +0100 | [diff] [blame] | 144 | # option - partial message read timeout in seconds |
| 145 | if(NOT READ_TIMEOUT) |
| 146 | set(READ_TIMEOUT 30) |
| 147 | endif() |
| 148 | |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 149 | # install library |
Jan Kundrát | b78cdfc | 2016-11-04 17:11:24 +0100 | [diff] [blame] | 150 | install(TARGETS netconf2 DESTINATION ${CMAKE_INSTALL_LIBDIR}) |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 151 | |
| 152 | # install headers |
Jan Kundrát | b78cdfc | 2016-11-04 17:11:24 +0100 | [diff] [blame] | 153 | install(FILES ${CMAKE_CURRENT_BINARY_DIR}/nc_client.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}) |
| 154 | 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] | 155 | install(FILES ${headers} DESTINATION ${INCLUDE_INSTALL_SUBDIR}) |
| 156 | |
Radek Krejci | 14b1403 | 2015-10-21 15:19:43 +0200 | [diff] [blame] | 157 | # install schemas |
| 158 | install( |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 159 | CODE "file(GLOB yin_schemas \"${CMAKE_SOURCE_DIR}/schemas/*.yin\")" |
Michal Vasko | ed6e0d3 | 2016-02-24 13:28:58 +0100 | [diff] [blame] | 160 | CODE "file(INSTALL \${yin_schemas} DESTINATION ${CMAKE_INSTALL_PREFIX}/${DATA_INSTALL_DIR})" |
Radek Krejci | 14b1403 | 2015-10-21 15:19:43 +0200 | [diff] [blame] | 161 | ) |
| 162 | |
Michal Vasko | 6779d18 | 2016-02-17 14:36:36 +0100 | [diff] [blame] | 163 | # install pkg-config file |
| 164 | find_package(PkgConfig) |
| 165 | if(PKG_CONFIG_FOUND) |
| 166 | configure_file("libnetconf2.pc.in" "libnetconf2.pc" @ONLY) |
Jan Kundrát | b78cdfc | 2016-11-04 17:11:24 +0100 | [diff] [blame] | 167 | 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] | 168 | # check that pkg-config includes the used path |
| 169 | execute_process(COMMAND ${PKG_CONFIG_EXECUTABLE} --variable pc_path pkg-config RESULT_VARIABLE RETURN OUTPUT_VARIABLE PC_PATH ERROR_QUIET) |
| 170 | if(RETURN EQUAL 0) |
Jan Kundrát | b78cdfc | 2016-11-04 17:11:24 +0100 | [diff] [blame] | 171 | string(REGEX MATCH "${CMAKE_INSTALL_LIBDIR}/pkgconfig" SUBSTR "${PC_PATH}") |
Michal Vasko | 6779d18 | 2016-02-17 14:36:36 +0100 | [diff] [blame] | 172 | string(LENGTH "${SUBSTR}" SUBSTR_LEN) |
| 173 | if(SUBSTR_LEN EQUAL 0) |
Jan Kundrát | b78cdfc | 2016-11-04 17:11:24 +0100 | [diff] [blame] | 174 | 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] | 175 | endif() |
| 176 | endif() |
| 177 | endif() |
| 178 | |
Radek Krejci | ce24ab8 | 2015-10-08 15:37:02 +0200 | [diff] [blame] | 179 | if(ENABLE_VALGRIND_TESTS) |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 180 | set(ENABLE_BUILD_TESTS ON) |
Radek Krejci | ce24ab8 | 2015-10-08 15:37:02 +0200 | [diff] [blame] | 181 | endif() |
| 182 | |
| 183 | if(ENABLE_BUILD_TESTS) |
Radek Krejci | eaa0672 | 2016-02-26 14:27:32 +0100 | [diff] [blame] | 184 | find_package(CMocka 1.0.0) |
| 185 | if(CMOCKA_FOUND) |
| 186 | enable_testing() |
| 187 | add_subdirectory(tests) |
| 188 | endif(CMOCKA_FOUND) |
Radek Krejci | ce24ab8 | 2015-10-08 15:37:02 +0200 | [diff] [blame] | 189 | endif() |
| 190 | |
Radek Krejci | 6882496 | 2016-01-19 14:03:09 +0100 | [diff] [blame] | 191 | configure_file("${PROJECT_SOURCE_DIR}/src/config.h.in" "${PROJECT_SOURCE_DIR}/src/config.h" ESCAPE_QUOTES @ONLY) |
Michal Vasko | 1128e11 | 2015-10-26 15:34:24 +0100 | [diff] [blame] | 192 | configure_file(nc_client.h.in nc_client.h) |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 193 | configure_file(nc_server.h.in nc_server.h) |
Radek Krejci | 14b1403 | 2015-10-21 15:19:43 +0200 | [diff] [blame] | 194 | |
Radek Krejci | 183f7e7 | 2015-09-01 17:25:47 +0200 | [diff] [blame] | 195 | # clean cmake cache |
| 196 | add_custom_target(cleancache |
| 197 | COMMAND make clean |
| 198 | COMMAND find . -iname '*cmake*' -not -name CMakeLists.txt -exec rm -rf {} + |
| 199 | COMMAND rm -rf Makefile Doxyfile |
| 200 | WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}) |