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