Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 1 | cmake_minimum_required(VERSION 2.8.12) |
Radek Krejci | f8482c7 | 2019-04-04 10:10:47 +0200 | [diff] [blame] | 2 | |
| 3 | # force out-of-source build |
| 4 | if(${CMAKE_SOURCE_DIR} STREQUAL ${CMAKE_BINARY_DIR}) |
| 5 | message(FATAL_ERROR "In-source build is not allowed. Please make a standalone build directory and run CMake from there. You may need to remove CMakeCache.txt.") |
| 6 | endif() |
| 7 | |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 8 | project(libyang C) |
| 9 | |
Michal Vasko | 5aa44c0 | 2020-06-29 11:47:02 +0200 | [diff] [blame] | 10 | # include custom Modules |
| 11 | set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/CMakeModules/") |
| 12 | |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 13 | include(GNUInstallDirs) |
| 14 | include(CheckSymbolExists) |
Michal Vasko | 5aa44c0 | 2020-06-29 11:47:02 +0200 | [diff] [blame] | 15 | include(UseCompat) |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 16 | |
| 17 | set(LIBYANG_DESCRIPTION "libyang is YANG data modelling language parser and toolkit written (and providing API) in C.") |
| 18 | |
| 19 | # Correct RPATH usage on OS X |
| 20 | set(CMAKE_MACOSX_RPATH TRUE) |
| 21 | |
Radek Krejci | a43d69d | 2019-04-04 10:34:46 +0200 | [diff] [blame] | 22 | # set version of the project |
| 23 | set(LIBYANG_MAJOR_VERSION 2) |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 24 | set(LIBYANG_MINOR_VERSION 0) |
| 25 | set(LIBYANG_MICRO_VERSION 0) |
| 26 | set(LIBYANG_VERSION ${LIBYANG_MAJOR_VERSION}.${LIBYANG_MINOR_VERSION}.${LIBYANG_MICRO_VERSION}) |
Radek Krejci | a43d69d | 2019-04-04 10:34:46 +0200 | [diff] [blame] | 27 | # set version of the library |
| 28 | set(LIBYANG_MAJOR_SOVERSION 2) |
| 29 | set(LIBYANG_MINOR_SOVERSION 0) |
| 30 | set(LIBYANG_MICRO_SOVERSION 0) |
| 31 | set(LIBYANG_SOVERSION_FULL ${LIBYANG_MAJOR_SOVERSION}.${LIBYANG_MINOR_SOVERSION}.${LIBYANG_MICRO_SOVERSION}) |
| 32 | set(LIBYANG_SOVERSION ${LIBYANG_MAJOR_SOVERSION}) |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 33 | |
| 34 | # set default build type if not specified by user |
| 35 | if(NOT CMAKE_BUILD_TYPE) |
| 36 | set(CMAKE_BUILD_TYPE debug) |
| 37 | endif() |
| 38 | |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 39 | # options |
Radek Krejci | e84f12f | 2018-09-18 14:11:50 +0200 | [diff] [blame] | 40 | if((CMAKE_BUILD_TYPE STREQUAL debug) OR (CMAKE_BUILD_TYPE STREQUAL Package)) |
| 41 | option(ENABLE_BUILD_TESTS "Build tests" ON) |
| 42 | option(ENABLE_VALGRIND_TESTS "Build tests with valgrind" ON) |
Radek Krejci | 290a6a5 | 2019-09-12 17:13:17 +0200 | [diff] [blame] | 43 | set(INTERNAL_DOCS YES) |
Radek Krejci | e84f12f | 2018-09-18 14:11:50 +0200 | [diff] [blame] | 44 | else() |
| 45 | option(ENABLE_BUILD_TESTS "Build tests" OFF) |
| 46 | option(ENABLE_VALGRIND_TESTS "Build tests with valgrind" OFF) |
Radek Krejci | 290a6a5 | 2019-09-12 17:13:17 +0200 | [diff] [blame] | 47 | set(INTERNAL_DOCS NO) |
Radek Krejci | e84f12f | 2018-09-18 14:11:50 +0200 | [diff] [blame] | 48 | endif() |
Radek Krejci | f315610 | 2019-09-06 13:07:10 +0200 | [diff] [blame] | 49 | option(ENABLE_COVERAGE "Build code coverage report from tests" OFF) |
Juraj Vijtiuk | f3939c9 | 2019-05-14 13:07:38 +0200 | [diff] [blame] | 50 | |
| 51 | option(ENABLE_FUZZ_TARGETS "Build target programs suitable for fuzzing with AFL" OFF) |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 52 | #option(ENABLE_CALLGRIND_TESTS "Build performance tests to be run with callgrind" OFF) |
| 53 | |
| 54 | #option(ENABLE_CACHE "Enable data caching for schemas and hash tables for data (time-efficient at the cost of increased space-complexity)" ON) |
| 55 | #option(ENABLE_LATEST_REVISIONS "Enable reusing of latest revisions of schemas" ON) |
| 56 | #option(ENABLE_LYD_PRIV "Add a private pointer also to struct lyd_node (data node structure), just like in struct lys_node, for arbitrary user data" OFF) |
| 57 | #set(PLUGINS_DIR "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}/libyang" CACHE STRING "Directory with libyang plugins (extensions and user types)") |
| 58 | |
| 59 | #if(ENABLE_CACHE) |
| 60 | # set(LY_ENABLED_CACHE 1) |
| 61 | #endif() |
| 62 | #if(ENABLE_LATEST_REVISIONS) |
| 63 | # set(LY_ENABLED_LATEST_REVISIONS 1) |
| 64 | #endif() |
| 65 | #if(ENABLE_LYD_PRIV) |
| 66 | # set(LY_ENABLED_LYD_PRIV 1) |
| 67 | #endif() |
| 68 | |
| 69 | if(CMAKE_C_COMPILER_ID STREQUAL "GNU") |
| 70 | set(COMPILER_UNUSED_ATTR "UNUSED_ ## x __attribute__((__unused__))") |
| 71 | set(COMPILER_PACKED_ATTR "__attribute__((__packed__))") |
| 72 | elseif(CMAKE_C_COMPILER_ID STREQUAL "Clang") |
| 73 | set(COMPILER_UNUSED_ATTR "UNUSED_ ## x __attribute__((__unused__))") |
| 74 | set(COMPILER_PACKED_ATTR "__attribute__((__packed__))") |
| 75 | else() |
| 76 | set(COMPILER_UNUSED_ATTR "UNUSED_ ## x") |
| 77 | set(COMPILER_PACKED_ATTR "") |
| 78 | endif() |
| 79 | |
Radek Krejci | 8c1054b | 2019-05-17 10:18:54 +0200 | [diff] [blame] | 80 | if(ENABLE_COVERAGE) |
| 81 | find_program(PATH_GCOV NAMES gcov) |
| 82 | if(NOT PATH_GCOV) |
| 83 | message(WARNING "'gcov' executable not found! Disabling building code coverage report.") |
| 84 | set(ENABLE_COVERAGE OFF) |
| 85 | endif() |
| 86 | |
| 87 | find_program(PATH_LCOV NAMES lcov) |
Radek Krejci | 8e01ae3 | 2020-06-18 16:33:49 +0200 | [diff] [blame] | 88 | if(NOT PATH_LCOV) |
Radek Krejci | 8c1054b | 2019-05-17 10:18:54 +0200 | [diff] [blame] | 89 | message(WARNING "'lcov' executable not found! Disabling building code coverage report.") |
| 90 | set(ENABLE_COVERAGE OFF) |
| 91 | endif() |
| 92 | |
| 93 | find_program(PATH_GENHTML NAMES genhtml) |
Radek Krejci | 8e01ae3 | 2020-06-18 16:33:49 +0200 | [diff] [blame] | 94 | if(NOT PATH_GENHTML) |
Radek Krejci | 8c1054b | 2019-05-17 10:18:54 +0200 | [diff] [blame] | 95 | message(WARNING "'genhtml' executable not found! Disabling building code coverage report.") |
| 96 | set(ENABLE_COVERAGE OFF) |
| 97 | endif() |
| 98 | |
| 99 | if(NOT CMAKE_COMPILER_IS_GNUCC) |
| 100 | message(WARNING "Compiler is not gcc! Coverage may break the tests!") |
| 101 | endif() |
| 102 | |
| 103 | if(ENABLE_COVERAGE) |
| 104 | set(CMAKE_C_FLAGS_COVERAGE "${CMAKE_C_FLAGS} --coverage -fprofile-arcs -ftest-coverage") |
| 105 | endif() |
| 106 | endif() |
| 107 | |
| 108 | set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${CMAKE_C_FLAGS_COVERAGE} -Wall -Wextra -Wno-missing-field-initializers -std=c99") |
| 109 | set(CMAKE_C_FLAGS_RELEASE "-O2 -DNDEBUG") |
| 110 | set(CMAKE_C_FLAGS_PACKAGE "-g -O2 -DNDEBUG") |
Radek Krejci | 208e4ea | 2020-07-03 15:22:18 +0200 | [diff] [blame^] | 111 | set(CMAKE_C_FLAGS_DEBUG "-g -Og") |
Radek Krejci | 8c1054b | 2019-05-17 10:18:54 +0200 | [diff] [blame] | 112 | |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 113 | include_directories(${PROJECT_BINARY_DIR}/src ${PROJECT_SOURCE_DIR}/src) |
| 114 | configure_file(${PROJECT_SOURCE_DIR}/src/config.h.in ${PROJECT_BINARY_DIR}/src/config.h @ONLY) |
| 115 | |
| 116 | #set(EXTENSIONS_PLUGINS_DIR_MACRO "${PLUGINS_DIR}/extensions") |
| 117 | #set(USER_TYPES_PLUGINS_DIR_MACRO "${PLUGINS_DIR}/user_types") |
| 118 | |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 119 | # setup bindings |
| 120 | #set(GEN_LANGUAGE_BINDINGS 0 CACHE BOOL "Enable language bindings generation.") |
| 121 | #set(GEN_CPP_BINDINGS 1 CACHE BOOL "Enable C++ bindings.") |
| 122 | # Python bindings depend on C++ bindings because of SWIG |
| 123 | #set(GEN_PYTHON_BINDINGS 1 CACHE BOOL "Enable Python bindings.") |
| 124 | #set(GEN_PYTHON_VERSION "3" CACHE STRING "Python version") |
| 125 | #set(GEN_JAVASCRIPT_BINDINGS 0 CACHE BOOL "Enable JavaScript bindings.") |
| 126 | |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 127 | # by default build shared library |
Radek Krejci | 5457946 | 2019-04-30 12:47:06 +0200 | [diff] [blame] | 128 | # static build requires static libpcre2 library |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 129 | option(ENABLE_STATIC "Build static (.a) library" OFF) |
| 130 | |
| 131 | # check the supported platform |
| 132 | if(NOT UNIX) |
| 133 | message(FATAL_ERROR "Only *nix like systems are supported.") |
| 134 | endif() |
| 135 | |
| 136 | set(libsrc |
Michal Vasko | 1324b6c | 2018-09-07 11:16:23 +0200 | [diff] [blame] | 137 | src/common.c |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 138 | src/log.c |
| 139 | src/hash_table.c |
Radek Krejci | ad57350 | 2018-09-07 15:26:55 +0200 | [diff] [blame] | 140 | src/set.c |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 141 | src/path.c |
Radek Krejci | d4557c6 | 2018-09-17 11:42:09 +0200 | [diff] [blame] | 142 | src/context.c |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 143 | src/tree_data.c |
| 144 | src/tree_data_free.c |
| 145 | src/tree_data_helpers.c |
| 146 | src/tree_data_hash.c |
| 147 | src/parser_xml.c |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 148 | src/parser_json.c |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 149 | src/parser_lyb.c |
Radek Krejci | a5bba31 | 2020-01-09 15:41:20 +0100 | [diff] [blame] | 150 | src/printer.c |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 151 | src/printer_data.c |
| 152 | src/printer_xml.c |
Radek Krejci | 13a57b6 | 2019-07-19 13:04:09 +0200 | [diff] [blame] | 153 | src/printer_json.c |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 154 | src/printer_lyb.c |
Radek Krejci | 3f5e3db | 2018-10-11 15:57:47 +0200 | [diff] [blame] | 155 | src/tree_schema.c |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 156 | src/tree_schema_free.c |
| 157 | src/tree_schema_compile.c |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 158 | src/tree_schema_helpers.c |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 159 | src/parser.c |
Radek Krejci | d91dbaf | 2018-09-21 15:51:39 +0200 | [diff] [blame] | 160 | src/parser_yang.c |
David Sedlák | 3b4db24 | 2018-10-19 16:11:01 +0200 | [diff] [blame] | 161 | src/parser_yin.c |
Radek Krejci | 335332a | 2019-09-05 13:03:35 +0200 | [diff] [blame] | 162 | src/parser_stmt.c |
Radek Krejci | d3ca063 | 2019-04-16 16:54:54 +0200 | [diff] [blame] | 163 | src/printer.c |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 164 | src/printer_schema.c |
Radek Krejci | d3ca063 | 2019-04-16 16:54:54 +0200 | [diff] [blame] | 165 | src/printer_yang.c |
FredGan | d944bdc | 2019-11-05 21:57:07 +0800 | [diff] [blame] | 166 | src/printer_yin.c |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 167 | src/plugins_types.c |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 168 | src/plugins_exts.c |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 169 | src/xml.c |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 170 | src/xpath.c |
| 171 | src/validation.c) |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 172 | |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 173 | set(lintsrc |
| 174 | tools/lint/main.c |
| 175 | tools/lint/main_ni.c |
| 176 | tools/lint/commands.c |
| 177 | tools/lint/completion.c |
| 178 | tools/lint/configuration.c |
| 179 | tools/lint/linenoise/linenoise.c) |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 180 | |
Radek Krejci | 5819f7c | 2019-05-31 14:53:29 +0200 | [diff] [blame] | 181 | set(resrc |
| 182 | tools/re/main.c) |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 183 | |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 184 | set(headers |
| 185 | src/libyang.h |
Radek Krejci | 6caa6ab | 2018-10-24 10:04:48 +0200 | [diff] [blame] | 186 | src/context.h |
Radek Krejci | ca376bd | 2020-06-11 16:04:06 +0200 | [diff] [blame] | 187 | src/dict.h |
| 188 | src/log.h |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 189 | src/parser.h |
| 190 | src/parser_schema.h |
| 191 | src/plugins_exts.h |
| 192 | src/plugins_types.h |
Radek Krejci | a5bba31 | 2020-01-09 15:41:20 +0100 | [diff] [blame] | 193 | src/printer.h |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 194 | src/printer_data.h |
Radek Krejci | d3ca063 | 2019-04-16 16:54:54 +0200 | [diff] [blame] | 195 | src/printer_schema.h |
Radek Krejci | ca376bd | 2020-06-11 16:04:06 +0200 | [diff] [blame] | 196 | src/set.h |
| 197 | src/tree.h |
| 198 | src/tree_data.h |
| 199 | src/tree_schema.h) |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 200 | |
Michal Vasko | 5aa44c0 | 2020-06-29 11:47:02 +0200 | [diff] [blame] | 201 | # link compat |
| 202 | use_compat() |
| 203 | |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 204 | # create static libyang library |
| 205 | if(ENABLE_STATIC) |
| 206 | add_definitions(-DSTATIC) |
| 207 | set(CMAKE_EXE_LINKER_FLAGS -static) |
| 208 | set(CMAKE_FIND_LIBRARY_SUFFIXES .a) |
| 209 | set(CMAKE_EXE_LINK_DYNAMIC_C_FLAGS) # remove -Wl,-Bdynamic |
| 210 | set(CMAKE_EXE_LINK_DYNAMIC_CXX_FLAGS) |
Michal Vasko | 5aa44c0 | 2020-06-29 11:47:02 +0200 | [diff] [blame] | 211 | add_library(yang STATIC ${libsrc} $<TARGET_OBJECTS:compat>) |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 212 | else() |
| 213 | set(CMAKE_POSITION_INDEPENDENT_CODE TRUE) |
| 214 | add_library(yangobj OBJECT ${libsrc}) |
Michal Vasko | 5aa44c0 | 2020-06-29 11:47:02 +0200 | [diff] [blame] | 215 | add_library(yang SHARED $<TARGET_OBJECTS:yangobj> $<TARGET_OBJECTS:compat>) |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 216 | |
| 217 | #link dl |
| 218 | target_link_libraries(yang ${CMAKE_DL_LIBS}) |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 219 | |
Juraj Vijtiuk | dd53e66 | 2019-11-15 13:35:33 +0100 | [diff] [blame] | 220 | set_target_properties(yangobj PROPERTIES COMPILE_FLAGS "-fvisibility=hidden") |
Michal Vasko | 5aa44c0 | 2020-06-29 11:47:02 +0200 | [diff] [blame] | 221 | endif() |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 222 | |
Radek Krejci | a43d69d | 2019-04-04 10:34:46 +0200 | [diff] [blame] | 223 | set_target_properties(yang PROPERTIES VERSION ${LIBYANG_SOVERSION_FULL} SOVERSION ${LIBYANG_SOVERSION}) |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 224 | |
| 225 | # link math |
| 226 | target_link_libraries(yang m) |
| 227 | |
| 228 | # find pthreads |
| 229 | set(CMAKE_THREAD_PREFER_PTHREAD TRUE) |
| 230 | find_package(Threads REQUIRED) |
| 231 | if(ENABLE_STATIC) |
| 232 | target_link_libraries(yang -Wl,--whole-archive ${CMAKE_THREAD_LIBS_INIT} -Wl,--no-whole-archive) |
| 233 | else() |
| 234 | target_link_libraries(yang ${CMAKE_THREAD_LIBS_INIT}) |
Michal Vasko | 5aa44c0 | 2020-06-29 11:47:02 +0200 | [diff] [blame] | 235 | endif() |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 236 | |
Radek Krejci | 5457946 | 2019-04-30 12:47:06 +0200 | [diff] [blame] | 237 | # find PCRE2 library |
| 238 | unset(PCRE2_LIBRARY CACHE) |
Radek Krejci | d9e68c4 | 2019-05-31 16:26:26 +0200 | [diff] [blame] | 239 | find_package(PCRE2 10.30 REQUIRED) |
Radek Krejci | 5457946 | 2019-04-30 12:47:06 +0200 | [diff] [blame] | 240 | include_directories(${PCRE2_INCLUDE_DIRS}) |
| 241 | target_link_libraries(yang ${PCRE2_LIBRARIES}) |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 242 | |
| 243 | install(TARGETS yang DESTINATION ${CMAKE_INSTALL_LIBDIR}) |
| 244 | install(FILES ${headers} ${PROJECT_BINARY_DIR}/src/config.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/libyang) |
| 245 | |
| 246 | find_package(PkgConfig) |
| 247 | if(PKG_CONFIG_FOUND) |
| 248 | # generate and install pkg-config file |
| 249 | configure_file("libyang.pc.in" "libyang.pc" @ONLY) |
| 250 | install(FILES "${CMAKE_CURRENT_BINARY_DIR}/libyang.pc" DESTINATION "${CMAKE_INSTALL_LIBDIR}/pkgconfig") |
| 251 | # check that pkg-config includes the used path |
| 252 | execute_process(COMMAND ${PKG_CONFIG_EXECUTABLE} --variable pc_path pkg-config RESULT_VARIABLE RETURN OUTPUT_VARIABLE PC_PATH ERROR_QUIET) |
| 253 | if(RETURN EQUAL 0) |
| 254 | string(STRIP "${PC_PATH}" PC_PATH) |
| 255 | set(PC_PATH "${PC_PATH}:$ENV{PKG_CONFIG_PATH}") |
| 256 | string(REGEX MATCH "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}/pkgconfig" SUBSTR "${PC_PATH}") |
| 257 | string(LENGTH "${SUBSTR}" SUBSTR_LEN) |
| 258 | if(SUBSTR_LEN EQUAL 0) |
| 259 | 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}/${CMAKE_INSTALL_LIBDIR}/pkgconfig\".") |
| 260 | endif() |
| 261 | endif() |
| 262 | endif() |
| 263 | |
| 264 | # generate doxygen documentation for libyang API |
| 265 | find_package(Doxygen) |
| 266 | if(DOXYGEN_FOUND) |
| 267 | find_program(DOT_PATH dot PATH_SUFFIXES graphviz2.38/bin graphviz/bin) |
| 268 | if(DOT_PATH) |
| 269 | set(HAVE_DOT "YES") |
| 270 | else() |
| 271 | set(HAVE_DOT "NO") |
| 272 | message(AUTHOR_WARNING "Doxygen: to generate UML diagrams please install graphviz") |
| 273 | endif() |
| 274 | add_custom_target(doc |
| 275 | COMMAND ${DOXYGEN_EXECUTABLE} ${CMAKE_BINARY_DIR}/Doxyfile |
| 276 | WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}) |
Radek Krejci | 2ff0d57 | 2020-05-21 15:27:28 +0200 | [diff] [blame] | 277 | string(REPLACE ";" " " DOXY_HEADERS "${headers}") |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 278 | configure_file(Doxyfile.in Doxyfile) |
| 279 | endif() |
| 280 | |
| 281 | # clean cmake cache |
| 282 | add_custom_target(cclean |
| 283 | COMMAND make clean |
| 284 | COMMAND find . -iname '*cmake*' -not -name CMakeLists.txt -not -path './CMakeModules*' -exec rm -rf {} + |
| 285 | COMMAND rm -rf Makefile Doxyfile |
| 286 | WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}) |
| 287 | |
| 288 | # YANG extensions plugins |
| 289 | #set(EXTENSIONS_LIST "nacm" "metadata" "yangdata") |
| 290 | # if the tests are enabled, build libyang_ext_test |
Radek Krejci | e84f12f | 2018-09-18 14:11:50 +0200 | [diff] [blame] | 291 | if(ENABLE_BUILD_TESTS) |
| 292 | find_package(CMocka 1.0.0) |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 293 | # if(CMOCKA_FOUND AND CMAKE_BUILD_TYPE MATCHES debug) |
| 294 | # list(APPEND EXTENSIONS_LIST "libyang_ext_test") |
| 295 | # endif(CMOCKA_FOUND AND CMAKE_BUILD_TYPE MATCHES debug) |
Radek Krejci | e84f12f | 2018-09-18 14:11:50 +0200 | [diff] [blame] | 296 | endif(ENABLE_BUILD_TESTS) |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 297 | |
| 298 | #if(ENABLE_STATIC) |
| 299 | # set(EXTENSIONS_LIST_SIZE " 0 ") |
| 300 | # set(ITEM 0) |
| 301 | # foreach(EXTENSION ${EXTENSIONS_LIST}) |
| 302 | # add_library(${EXTENSION} STATIC "src/extensions/${EXTENSION}.c") |
| 303 | # target_link_libraries(yang ${EXTENSION}) |
| 304 | # set(EXTENSIONS_LIST_SIZE "${EXTENSIONS_LIST_SIZE} + lyext_size(${EXTENSION})") |
| 305 | # set(EXTERN_EXTENSIONS_LIST "${EXTERN_EXTENSIONS_LIST}extern struct lyext_plugin_list ${EXTENSION}[];\n") |
| 306 | # set(MEMCPY_EXTENSIONS_LIST "${MEMCPY_EXTENSIONS_LIST} lyext_add(plugin, count, ${EXTENSION});\n") |
| 307 | # set(STATIC_LOADED_PLUGINS "${STATIC_LOADED_PLUGINS} \"${EXTENSION}\",") |
| 308 | # MATH(EXPR ITEM "${ITEM}+1") |
| 309 | # endforeach() |
| 310 | #else() |
| 311 | # add_subdirectory(src/extensions) |
| 312 | #endif(ENABLE_STATIC) |
| 313 | |
| 314 | # YANG user types plugins ("user_ipv4" is just an example, not installed by default) |
| 315 | #set(USER_TYPE_LIST "user_date_and_time") |
| 316 | #if(ENABLE_STATIC) |
| 317 | # set(USER_TYPE_LIST_SIZE " 0 ") |
| 318 | # foreach(USER_TYPE ${USER_TYPE_LIST}) |
| 319 | # add_library(${USER_TYPE} STATIC "src/user_types/${USER_TYPE}.c") |
| 320 | # target_link_libraries(yang ${USER_TYPE}) |
| 321 | # set(USER_TYPE_LIST_SIZE "${USER_TYPE_LIST_SIZE} + lytype_size(${USER_TYPE})") |
| 322 | # set(EXTERN_USER_TYPE_LIST "${EXTERN_USER_TYPE_LIST}extern struct lytype_plugin_list ${USER_TYPE}[];\n") |
| 323 | # set(MEMCPY_USER_TYPE_LIST "${MEMCPY_USER_TYPE_LIST} lytype_add(plugin, count, ${USER_TYPE});\n") |
| 324 | # set(STATIC_LOADED_PLUGINS "${STATIC_LOADED_PLUGINS} \"${USER_TYPE}\",") |
| 325 | # MATH(EXPR ITEM "${ITEM}+1") |
| 326 | # endforeach() |
| 327 | # set(STATIC_LOADED_PLUGINS_COUNT "${ITEM}") |
| 328 | #else() |
| 329 | # add_subdirectory(src/user_types) |
| 330 | #endif(ENABLE_STATIC) |
| 331 | # |
| 332 | #configure_file(${PROJECT_SOURCE_DIR}/src/plugin_config.h.in ${PROJECT_BINARY_DIR}/src/plugin_config.h) |
| 333 | |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 334 | # config file for tools |
| 335 | configure_file(${PROJECT_SOURCE_DIR}/tools/config.h.in ${PROJECT_BINARY_DIR}/tools/config.h @ONLY) |
| 336 | |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 337 | # yanglint |
Michal Vasko | 5aa44c0 | 2020-06-29 11:47:02 +0200 | [diff] [blame] | 338 | add_executable(yanglint ${lintsrc} $<TARGET_OBJECTS:compat>) |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 339 | target_link_libraries(yanglint yang) |
| 340 | install(TARGETS yanglint DESTINATION ${CMAKE_INSTALL_BINDIR}) |
| 341 | install(FILES ${PROJECT_SOURCE_DIR}/tools/lint/yanglint.1 DESTINATION ${CMAKE_INSTALL_MANDIR}/man1) |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 342 | target_include_directories(yanglint BEFORE PRIVATE ${PROJECT_BINARY_DIR}) |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 343 | |
Radek Krejci | 5819f7c | 2019-05-31 14:53:29 +0200 | [diff] [blame] | 344 | # yangre |
Michal Vasko | 5aa44c0 | 2020-06-29 11:47:02 +0200 | [diff] [blame] | 345 | add_executable(yangre ${resrc} $<TARGET_OBJECTS:compat>) |
Radek Krejci | 5819f7c | 2019-05-31 14:53:29 +0200 | [diff] [blame] | 346 | target_link_libraries(yangre yang) |
| 347 | install(TARGETS yangre DESTINATION ${CMAKE_INSTALL_BINDIR}) |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 348 | target_include_directories(yangre BEFORE PRIVATE ${PROJECT_BINARY_DIR}) |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 349 | |
Radek Krejci | e84f12f | 2018-09-18 14:11:50 +0200 | [diff] [blame] | 350 | if(ENABLE_VALGRIND_TESTS) |
| 351 | set(ENABLE_BUILD_TESTS ON) |
| 352 | endif() |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 353 | |
Radek Krejci | e84f12f | 2018-09-18 14:11:50 +0200 | [diff] [blame] | 354 | if(ENABLE_BUILD_TESTS) |
| 355 | if(CMOCKA_FOUND) |
| 356 | enable_testing() |
| 357 | add_subdirectory(tests) |
Michal Vasko | 5aa44c0 | 2020-06-29 11:47:02 +0200 | [diff] [blame] | 358 | else() |
Radek Krejci | e84f12f | 2018-09-18 14:11:50 +0200 | [diff] [blame] | 359 | message(STATUS "Disabling tests because of missing CMocka") |
| 360 | set(ENABLE_BUILD_TESTS NO) |
Michal Vasko | 5aa44c0 | 2020-06-29 11:47:02 +0200 | [diff] [blame] | 361 | endif() |
| 362 | endif() |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 363 | |
Juraj Vijtiuk | 04f7127 | 2019-08-07 06:49:00 -0400 | [diff] [blame] | 364 | if(ENABLE_FUZZ_TARGETS) |
Michal Vasko | 5aa44c0 | 2020-06-29 11:47:02 +0200 | [diff] [blame] | 365 | set(FUZZER "AFL" CACHE STRING "fuzzer type") |
| 366 | if(FUZZER STREQUAL "LibFuzzer") |
| 367 | if (NOT CMAKE_C_COMPILER_ID STREQUAL "Clang") |
| 368 | message(FATAL_ERROR "LibFuzzer works only with clang") |
| 369 | endif() |
| 370 | set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fsanitize=address,undefined -fno-omit-frame-pointer") |
| 371 | endif() |
| 372 | add_subdirectory(tests/fuzz) |
| 373 | endif() |
Juraj Vijtiuk | f3939c9 | 2019-05-14 13:07:38 +0200 | [diff] [blame] | 374 | |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 375 | #if(GEN_LANGUAGE_BINDINGS AND GEN_CPP_BINDINGS) |
| 376 | # add_subdirectory(swig) |
| 377 | #endif() |
| 378 | |