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 | b225882 | 2020-07-14 08:39:30 +0200 | [diff] [blame] | 16 | include(ABICheck) |
Radek Krejci | a198c96 | 2020-08-16 10:32:10 +0200 | [diff] [blame] | 17 | include(SourceFormat) |
Radek Krejci | 88ad4be | 2020-10-03 12:27:05 +0200 | [diff] [blame] | 18 | include(Doc) |
| 19 | |
| 20 | # set default build type if not specified by user |
| 21 | if(NOT CMAKE_BUILD_TYPE) |
| 22 | set(CMAKE_BUILD_TYPE Debug) |
| 23 | endif() |
| 24 | # normalize build type string |
| 25 | string(TOUPPER "${CMAKE_BUILD_TYPE}" BUILD_TYPE_UPPER) |
| 26 | if ("${BUILD_TYPE_UPPER}" STREQUAL "RELEASE") |
| 27 | set(CMAKE_BUILD_TYPE "Release" CACHE STRING "Build Type" FORCE) |
| 28 | elseif ("${BUILD_TYPE_UPPER}" STREQUAL "DEBUG") |
| 29 | set(CMAKE_BUILD_TYPE "Debug" CACHE STRING "Build Type" FORCE) |
| 30 | elseif ("${BUILD_TYPE_UPPER}" STREQUAL "RELWITHDEBINFO") |
| 31 | set(CMAKE_BUILD_TYPE "RelWithDebInfo" CACHE STRING "Build Type" FORCE) |
| 32 | elseif ("${BUILD_TYPE_UPPER}" STREQUAL "RELWITHDEBUG") |
| 33 | set(CMAKE_BUILD_TYPE "RelWithDebug" CACHE STRING "Build Type" FORCE) |
| 34 | elseif ("${BUILD_TYPE_UPPER}" STREQUAL "ABICHECK") |
| 35 | set(CMAKE_BUILD_TYPE "ABICheck" CACHE STRING "Build Type" FORCE) |
| 36 | elseif ("${BUILD_TYPE_UPPER}" STREQUAL "DOCONLY") |
| 37 | set(CMAKE_BUILD_TYPE "DocOnly" CACHE STRING "Build Type" FORCE) |
| 38 | else () |
| 39 | message(FATAL_ERROR "Unknown CMAKE_BUILD_TYPE \"${CMAKE_BUILD_TYPE}\".") |
| 40 | endif () |
| 41 | |
| 42 | # check the supported platform |
| 43 | if(NOT UNIX) |
| 44 | message(FATAL_ERROR "Only *nix like systems are supported.") |
| 45 | endif() |
| 46 | |
| 47 | # |
| 48 | # variables |
| 49 | # |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 50 | |
| 51 | set(LIBYANG_DESCRIPTION "libyang is YANG data modelling language parser and toolkit written (and providing API) in C.") |
| 52 | |
| 53 | # Correct RPATH usage on OS X |
| 54 | set(CMAKE_MACOSX_RPATH TRUE) |
| 55 | |
Radek Krejci | cb293a3 | 2020-11-13 15:36:29 +0100 | [diff] [blame] | 56 | # keep all binaries in the build directory |
| 57 | set (CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}) |
| 58 | |
Radek Krejci | a43d69d | 2019-04-04 10:34:46 +0200 | [diff] [blame] | 59 | # set version of the project |
| 60 | set(LIBYANG_MAJOR_VERSION 2) |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 61 | set(LIBYANG_MINOR_VERSION 0) |
| 62 | set(LIBYANG_MICRO_VERSION 0) |
| 63 | set(LIBYANG_VERSION ${LIBYANG_MAJOR_VERSION}.${LIBYANG_MINOR_VERSION}.${LIBYANG_MICRO_VERSION}) |
Radek Krejci | a43d69d | 2019-04-04 10:34:46 +0200 | [diff] [blame] | 64 | # set version of the library |
| 65 | set(LIBYANG_MAJOR_SOVERSION 2) |
| 66 | set(LIBYANG_MINOR_SOVERSION 0) |
| 67 | set(LIBYANG_MICRO_SOVERSION 0) |
| 68 | set(LIBYANG_SOVERSION_FULL ${LIBYANG_MAJOR_SOVERSION}.${LIBYANG_MINOR_SOVERSION}.${LIBYANG_MICRO_SOVERSION}) |
| 69 | set(LIBYANG_SOVERSION ${LIBYANG_MAJOR_SOVERSION}) |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 70 | |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 71 | if(CMAKE_C_COMPILER_ID STREQUAL "GNU") |
| 72 | set(COMPILER_UNUSED_ATTR "UNUSED_ ## x __attribute__((__unused__))") |
| 73 | set(COMPILER_PACKED_ATTR "__attribute__((__packed__))") |
| 74 | elseif(CMAKE_C_COMPILER_ID STREQUAL "Clang") |
| 75 | set(COMPILER_UNUSED_ATTR "UNUSED_ ## x __attribute__((__unused__))") |
| 76 | set(COMPILER_PACKED_ATTR "__attribute__((__packed__))") |
| 77 | else() |
| 78 | set(COMPILER_UNUSED_ATTR "UNUSED_ ## x") |
| 79 | set(COMPILER_PACKED_ATTR "") |
| 80 | endif() |
| 81 | |
Radek Iša | a1395bb | 2020-11-24 21:30:50 +0100 | [diff] [blame] | 82 | set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -Wno-missing-field-initializers -std=c99") |
Radek Krejci | b225882 | 2020-07-14 08:39:30 +0200 | [diff] [blame] | 83 | set(CMAKE_C_FLAGS_DEBUG "-g3 -O0") |
| 84 | set(CMAKE_C_FLAGS_ABICHECK "-g -Og") |
Radek Krejci | 8c1054b | 2019-05-17 10:18:54 +0200 | [diff] [blame] | 85 | |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 86 | include_directories(${PROJECT_BINARY_DIR}/src ${PROJECT_SOURCE_DIR}/src) |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 87 | |
Radek Krejci | 968d755 | 2021-03-26 20:33:51 +0100 | [diff] [blame] | 88 | configure_file(${PROJECT_SOURCE_DIR}/src/config.h.in ${PROJECT_BINARY_DIR}/src/config.h @ONLY) |
| 89 | configure_file(${PROJECT_SOURCE_DIR}/src/version.h.in ${PROJECT_BINARY_DIR}/src/version.h @ONLY) |
| 90 | |
Radek Krejci | 64b4304 | 2021-04-26 09:27:43 +0200 | [diff] [blame] | 91 | # type plugins are separate because they have their documentation generated |
| 92 | set(type_plugins |
| 93 | src/plugins_types/binary.c |
| 94 | src/plugins_types/bits.c |
| 95 | src/plugins_types/boolean.c |
| 96 | src/plugins_types/decimal64.c |
| 97 | src/plugins_types/empty.c |
| 98 | src/plugins_types/enumeration.c |
| 99 | src/plugins_types/identityref.c |
| 100 | src/plugins_types/instanceid.c |
| 101 | src/plugins_types/integer.c |
| 102 | src/plugins_types/leafref.c |
| 103 | src/plugins_types/string.c |
| 104 | src/plugins_types/union.c |
Radek Krejci | 37c1801 | 2021-04-26 10:37:11 +0200 | [diff] [blame] | 105 | src/plugins_types/ipv6_address.c |
Radek Krejci | 64b4304 | 2021-04-26 09:27:43 +0200 | [diff] [blame] | 106 | src/plugins_types/ip_prefix.c |
| 107 | src/plugins_types/date_and_time.c |
| 108 | src/plugins_types/hex_string.c |
| 109 | src/plugins_types/xpath1.0.c) |
| 110 | |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 111 | set(libsrc |
Michal Vasko | 1324b6c | 2018-09-07 11:16:23 +0200 | [diff] [blame] | 112 | src/common.c |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 113 | src/log.c |
| 114 | src/hash_table.c |
Radek Krejci | ad57350 | 2018-09-07 15:26:55 +0200 | [diff] [blame] | 115 | src/set.c |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 116 | src/path.c |
Michal Vasko | d59035b | 2020-07-08 12:00:06 +0200 | [diff] [blame] | 117 | src/diff.c |
Radek Krejci | d4557c6 | 2018-09-17 11:42:09 +0200 | [diff] [blame] | 118 | src/context.c |
Radek Krejci | 50f0c6b | 2020-06-18 16:31:48 +0200 | [diff] [blame] | 119 | src/json.c |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 120 | src/tree_data.c |
| 121 | src/tree_data_free.c |
| 122 | src/tree_data_helpers.c |
| 123 | src/tree_data_hash.c |
| 124 | src/parser_xml.c |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 125 | src/parser_json.c |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 126 | src/parser_lyb.c |
Michal Vasko | afac782 | 2020-10-20 14:22:26 +0200 | [diff] [blame] | 127 | src/out.c |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 128 | src/printer_data.c |
| 129 | src/printer_xml.c |
Radek Krejci | 13a57b6 | 2019-07-19 13:04:09 +0200 | [diff] [blame] | 130 | src/printer_json.c |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 131 | src/printer_lyb.c |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 132 | src/schema_compile.c |
| 133 | src/schema_compile_node.c |
| 134 | src/schema_compile_amend.c |
Michal Vasko | 7b1ad1a | 2020-11-02 15:41:27 +0100 | [diff] [blame] | 135 | src/schema_features.c |
Radek Krejci | 3f5e3db | 2018-10-11 15:57:47 +0200 | [diff] [blame] | 136 | src/tree_schema.c |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 137 | src/tree_schema_free.c |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 138 | src/tree_schema_helpers.c |
Michal Vasko | afac782 | 2020-10-20 14:22:26 +0200 | [diff] [blame] | 139 | src/in.c |
Michal Vasko | 11f76c8 | 2021-04-15 14:36:14 +0200 | [diff] [blame] | 140 | src/lyb.c |
Radek Krejci | d91dbaf | 2018-09-21 15:51:39 +0200 | [diff] [blame] | 141 | src/parser_yang.c |
David Sedlák | 3b4db24 | 2018-10-19 16:11:01 +0200 | [diff] [blame] | 142 | src/parser_yin.c |
Radek Krejci | 335332a | 2019-09-05 13:03:35 +0200 | [diff] [blame] | 143 | src/parser_stmt.c |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 144 | src/printer_schema.c |
Radek Krejci | d3ca063 | 2019-04-16 16:54:54 +0200 | [diff] [blame] | 145 | src/printer_yang.c |
FredGan | d944bdc | 2019-11-05 21:57:07 +0800 | [diff] [blame] | 146 | src/printer_yin.c |
aPiecek | 61d062b | 2020-11-02 11:05:09 +0100 | [diff] [blame] | 147 | src/printer_tree.c |
Radek Krejci | 3e6632f | 2021-03-22 22:08:21 +0100 | [diff] [blame] | 148 | src/plugins.c |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 149 | src/plugins_types.c |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 150 | src/plugins_exts.c |
Radek Krejci | f1ca0ac | 2021-04-12 16:00:06 +0200 | [diff] [blame] | 151 | src/plugins_exts/metadata.c |
| 152 | src/plugins_exts/nacm.c |
| 153 | src/plugins_exts/yangdata.c |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 154 | src/xml.c |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 155 | src/xpath.c |
Radek Krejci | 64b4304 | 2021-04-26 09:27:43 +0200 | [diff] [blame] | 156 | src/validation.c |
| 157 | ${type_plugins}) |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 158 | |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 159 | set(headers |
| 160 | src/libyang.h |
Radek Krejci | 6caa6ab | 2018-10-24 10:04:48 +0200 | [diff] [blame] | 161 | src/context.h |
Radek Krejci | ca376bd | 2020-06-11 16:04:06 +0200 | [diff] [blame] | 162 | src/dict.h |
| 163 | src/log.h |
Michal Vasko | afac782 | 2020-10-20 14:22:26 +0200 | [diff] [blame] | 164 | src/in.h |
Michal Vasko | 9eb2a37 | 2020-07-14 12:18:12 +0200 | [diff] [blame] | 165 | src/parser_data.h |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 166 | src/parser_schema.h |
Radek Krejci | 3e6632f | 2021-03-22 22:08:21 +0100 | [diff] [blame] | 167 | src/plugins.h |
| 168 | src/plugins_exts.h |
| 169 | src/plugins_exts_compile.h |
| 170 | src/plugins_exts_print.h |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 171 | src/plugins_types.h |
Michal Vasko | afac782 | 2020-10-20 14:22:26 +0200 | [diff] [blame] | 172 | src/out.h |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 173 | src/printer_data.h |
Radek Krejci | d3ca063 | 2019-04-16 16:54:54 +0200 | [diff] [blame] | 174 | src/printer_schema.h |
Radek Krejci | ca376bd | 2020-06-11 16:04:06 +0200 | [diff] [blame] | 175 | src/set.h |
| 176 | src/tree.h |
Michal Vasko | 8fcd1e9 | 2021-04-15 14:42:58 +0200 | [diff] [blame] | 177 | src/tree_edit.h |
Radek Krejci | ca376bd | 2020-06-11 16:04:06 +0200 | [diff] [blame] | 178 | src/tree_data.h |
| 179 | src/tree_schema.h) |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 180 | |
Radek Krejci | cb293a3 | 2020-11-13 15:36:29 +0100 | [diff] [blame] | 181 | # source files to be covered by the 'format' target |
| 182 | set(format_sources |
| 183 | compat/* |
Radek Krejci | 5348e6c | 2021-04-13 21:18:51 +0200 | [diff] [blame] | 184 | src/*.c |
| 185 | src/*.h |
| 186 | src/plugins_exts/* |
| 187 | src/plugins_types/*) |
Radek Krejci | 88ad4be | 2020-10-03 12:27:05 +0200 | [diff] [blame] | 188 | # |
| 189 | # options |
| 190 | # |
| 191 | |
| 192 | if("${BUILD_TYPE_UPPER}" STREQUAL "DOCONLY") |
| 193 | libyang_doc() |
| 194 | return() |
| 195 | endif() |
| 196 | |
| 197 | if(("${BUILD_TYPE_UPPER}" STREQUAL "DEBUG") OR ("${BUILD_TYPE_UPPER}" STREQUAL "RELWITHDEBINFO")) |
| 198 | option(ENABLE_BUILD_TESTS "Build tests" ON) |
| 199 | option(ENABLE_VALGRIND_TESTS "Build tests with valgrind" ON) |
Radek Krejci | 7132fc5 | 2020-10-26 14:34:06 +0100 | [diff] [blame] | 200 | # TODO enable when the internal docs ready |
Radek Krejci | 685ef86 | 2020-11-05 12:55:26 +0100 | [diff] [blame] | 201 | set(INTERNAL_DOCS NO) |
Radek Krejci | 88ad4be | 2020-10-03 12:27:05 +0200 | [diff] [blame] | 202 | else() |
| 203 | option(ENABLE_BUILD_TESTS "Build tests" OFF) |
| 204 | option(ENABLE_VALGRIND_TESTS "Build tests with valgrind" OFF) |
Radek Krejci | 685ef86 | 2020-11-05 12:55:26 +0100 | [diff] [blame] | 205 | set(INTERNAL_DOCS NO) |
Radek Krejci | 88ad4be | 2020-10-03 12:27:05 +0200 | [diff] [blame] | 206 | endif() |
| 207 | option(ENABLE_COVERAGE "Build code coverage report from tests" OFF) |
| 208 | option(ENABLE_FUZZ_TARGETS "Build target programs suitable for fuzzing with AFL" OFF) |
Radek Krejci | 88ad4be | 2020-10-03 12:27:05 +0200 | [diff] [blame] | 209 | |
Radek Krejci | 968d755 | 2021-03-26 20:33:51 +0100 | [diff] [blame] | 210 | set(PLUGINS_DIR "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}/libyang" CACHE STRING "Directory with libyang plugins (extensions and user types)") |
| 211 | set(PLUGINS_DIR_EXTENSIONS "${PLUGINS_DIR}/extensions" CACHE STRING "Directory with libyang user extensions plugins") |
| 212 | set(PLUGINS_DIR_TYPES "${PLUGINS_DIR}/types" CACHE STRING "Directory with libyang user types plugins") |
Radek Krejci | 88ad4be | 2020-10-03 12:27:05 +0200 | [diff] [blame] | 213 | |
Radek Krejci | 88ad4be | 2020-10-03 12:27:05 +0200 | [diff] [blame] | 214 | if(ENABLE_COVERAGE) |
Radek Iša | abec96f | 2020-11-25 15:46:49 +0100 | [diff] [blame] | 215 | if(NOT ENABLE_BUILD_TESTS) |
| 216 | message(WARNING "you cannot generage coverage when tests are disabled. Enable test by additing parameter -DENABLE_BUILD_TESTS=ON or run cmake in some debug mode") |
| 217 | set(ENABLE_COVERAGE OFF) |
| 218 | endif() |
| 219 | |
Radek Krejci | 88ad4be | 2020-10-03 12:27:05 +0200 | [diff] [blame] | 220 | find_program(PATH_GCOV NAMES gcov) |
| 221 | if(NOT PATH_GCOV) |
| 222 | message(WARNING "'gcov' executable not found! Disabling building code coverage report.") |
| 223 | set(ENABLE_COVERAGE OFF) |
| 224 | endif() |
| 225 | |
| 226 | find_program(PATH_LCOV NAMES lcov) |
| 227 | if(NOT PATH_LCOV) |
| 228 | message(WARNING "'lcov' executable not found! Disabling building code coverage report.") |
| 229 | set(ENABLE_COVERAGE OFF) |
| 230 | endif() |
| 231 | |
| 232 | find_program(PATH_GENHTML NAMES genhtml) |
| 233 | if(NOT PATH_GENHTML) |
| 234 | message(WARNING "'genhtml' executable not found! Disabling building code coverage report.") |
| 235 | set(ENABLE_COVERAGE OFF) |
| 236 | endif() |
| 237 | |
| 238 | if(NOT CMAKE_COMPILER_IS_GNUCC) |
| 239 | message(WARNING "Compiler is not gcc! Coverage may break the tests!") |
| 240 | endif() |
| 241 | |
| 242 | if(ENABLE_COVERAGE) |
Radek Iša | a1395bb | 2020-11-24 21:30:50 +0100 | [diff] [blame] | 243 | set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} --coverage -fprofile-arcs -ftest-coverage") |
Radek Krejci | 88ad4be | 2020-10-03 12:27:05 +0200 | [diff] [blame] | 244 | endif() |
| 245 | endif() |
| 246 | |
| 247 | # by default build shared library |
| 248 | # static build requires static libpcre2 library |
| 249 | option(ENABLE_STATIC "Build static (.a) library" OFF) |
| 250 | |
| 251 | # |
| 252 | # targets |
| 253 | # |
| 254 | |
Michal Vasko | 5aa44c0 | 2020-06-29 11:47:02 +0200 | [diff] [blame] | 255 | # link compat |
| 256 | use_compat() |
| 257 | |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 258 | # create static libyang library |
| 259 | if(ENABLE_STATIC) |
| 260 | add_definitions(-DSTATIC) |
| 261 | set(CMAKE_EXE_LINKER_FLAGS -static) |
| 262 | set(CMAKE_FIND_LIBRARY_SUFFIXES .a) |
| 263 | set(CMAKE_EXE_LINK_DYNAMIC_C_FLAGS) # remove -Wl,-Bdynamic |
| 264 | set(CMAKE_EXE_LINK_DYNAMIC_CXX_FLAGS) |
Michal Vasko | 5aa44c0 | 2020-06-29 11:47:02 +0200 | [diff] [blame] | 265 | add_library(yang STATIC ${libsrc} $<TARGET_OBJECTS:compat>) |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 266 | else() |
| 267 | set(CMAKE_POSITION_INDEPENDENT_CODE TRUE) |
| 268 | add_library(yangobj OBJECT ${libsrc}) |
Michal Vasko | 5aa44c0 | 2020-06-29 11:47:02 +0200 | [diff] [blame] | 269 | add_library(yang SHARED $<TARGET_OBJECTS:yangobj> $<TARGET_OBJECTS:compat>) |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 270 | |
| 271 | #link dl |
| 272 | target_link_libraries(yang ${CMAKE_DL_LIBS}) |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 273 | |
Juraj Vijtiuk | dd53e66 | 2019-11-15 13:35:33 +0100 | [diff] [blame] | 274 | set_target_properties(yangobj PROPERTIES COMPILE_FLAGS "-fvisibility=hidden") |
Michal Vasko | 5aa44c0 | 2020-06-29 11:47:02 +0200 | [diff] [blame] | 275 | endif() |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 276 | |
Radek Krejci | a43d69d | 2019-04-04 10:34:46 +0200 | [diff] [blame] | 277 | set_target_properties(yang PROPERTIES VERSION ${LIBYANG_SOVERSION_FULL} SOVERSION ${LIBYANG_SOVERSION}) |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 278 | |
| 279 | # link math |
| 280 | target_link_libraries(yang m) |
| 281 | |
| 282 | # find pthreads |
| 283 | set(CMAKE_THREAD_PREFER_PTHREAD TRUE) |
| 284 | find_package(Threads REQUIRED) |
| 285 | if(ENABLE_STATIC) |
| 286 | target_link_libraries(yang -Wl,--whole-archive ${CMAKE_THREAD_LIBS_INIT} -Wl,--no-whole-archive) |
| 287 | else() |
| 288 | target_link_libraries(yang ${CMAKE_THREAD_LIBS_INIT}) |
Michal Vasko | 5aa44c0 | 2020-06-29 11:47:02 +0200 | [diff] [blame] | 289 | endif() |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 290 | |
Radek Krejci | 5457946 | 2019-04-30 12:47:06 +0200 | [diff] [blame] | 291 | # find PCRE2 library |
| 292 | unset(PCRE2_LIBRARY CACHE) |
Christian Hopps | dafed22 | 2021-03-22 13:02:42 -0400 | [diff] [blame] | 293 | find_package(PCRE2 10.21 REQUIRED) |
Radek Krejci | 5457946 | 2019-04-30 12:47:06 +0200 | [diff] [blame] | 294 | include_directories(${PCRE2_INCLUDE_DIRS}) |
| 295 | target_link_libraries(yang ${PCRE2_LIBRARIES}) |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 296 | |
| 297 | install(TARGETS yang DESTINATION ${CMAKE_INSTALL_LIBDIR}) |
Radek Krejci | aa73452 | 2020-08-20 15:33:07 +0200 | [diff] [blame] | 298 | install(FILES ${headers} ${PROJECT_BINARY_DIR}/src/version.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/libyang) |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 299 | |
| 300 | find_package(PkgConfig) |
| 301 | if(PKG_CONFIG_FOUND) |
| 302 | # generate and install pkg-config file |
| 303 | configure_file("libyang.pc.in" "libyang.pc" @ONLY) |
| 304 | install(FILES "${CMAKE_CURRENT_BINARY_DIR}/libyang.pc" DESTINATION "${CMAKE_INSTALL_LIBDIR}/pkgconfig") |
| 305 | # check that pkg-config includes the used path |
| 306 | execute_process(COMMAND ${PKG_CONFIG_EXECUTABLE} --variable pc_path pkg-config RESULT_VARIABLE RETURN OUTPUT_VARIABLE PC_PATH ERROR_QUIET) |
| 307 | if(RETURN EQUAL 0) |
| 308 | string(STRIP "${PC_PATH}" PC_PATH) |
| 309 | set(PC_PATH "${PC_PATH}:$ENV{PKG_CONFIG_PATH}") |
| 310 | string(REGEX MATCH "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}/pkgconfig" SUBSTR "${PC_PATH}") |
| 311 | string(LENGTH "${SUBSTR}" SUBSTR_LEN) |
| 312 | if(SUBSTR_LEN EQUAL 0) |
| 313 | 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\".") |
| 314 | endif() |
| 315 | endif() |
| 316 | endif() |
| 317 | |
Radek Krejci | e84f12f | 2018-09-18 14:11:50 +0200 | [diff] [blame] | 318 | if(ENABLE_BUILD_TESTS) |
| 319 | find_package(CMocka 1.0.0) |
Radek Krejci | e84f12f | 2018-09-18 14:11:50 +0200 | [diff] [blame] | 320 | endif(ENABLE_BUILD_TESTS) |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 321 | |
Radek Krejci | 5348e6c | 2021-04-13 21:18:51 +0200 | [diff] [blame] | 322 | if ("${BUILD_TYPE_UPPER}" STREQUAL "DEBUG") |
| 323 | # enable before adding tests to let them detect that format checking is available - one of the tests is format checking |
| 324 | source_format_enable() |
| 325 | endif() |
| 326 | |
Radek Krejci | cb293a3 | 2020-11-13 15:36:29 +0100 | [diff] [blame] | 327 | # tests |
Radek Krejci | e84f12f | 2018-09-18 14:11:50 +0200 | [diff] [blame] | 328 | if(ENABLE_VALGRIND_TESTS) |
| 329 | set(ENABLE_BUILD_TESTS ON) |
| 330 | endif() |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 331 | |
Radek Krejci | e84f12f | 2018-09-18 14:11:50 +0200 | [diff] [blame] | 332 | if(ENABLE_BUILD_TESTS) |
| 333 | if(CMOCKA_FOUND) |
| 334 | enable_testing() |
| 335 | add_subdirectory(tests) |
Michal Vasko | 5aa44c0 | 2020-06-29 11:47:02 +0200 | [diff] [blame] | 336 | else() |
Radek Krejci | e84f12f | 2018-09-18 14:11:50 +0200 | [diff] [blame] | 337 | message(STATUS "Disabling tests because of missing CMocka") |
Radek Iša | abec96f | 2020-11-25 15:46:49 +0100 | [diff] [blame] | 338 | set(ENABLE_BUILD_TESTS OFF) |
Michal Vasko | 5aa44c0 | 2020-06-29 11:47:02 +0200 | [diff] [blame] | 339 | endif() |
| 340 | endif() |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 341 | |
Juraj Vijtiuk | 04f7127 | 2019-08-07 06:49:00 -0400 | [diff] [blame] | 342 | if(ENABLE_FUZZ_TARGETS) |
Michal Vasko | 5aa44c0 | 2020-06-29 11:47:02 +0200 | [diff] [blame] | 343 | set(FUZZER "AFL" CACHE STRING "fuzzer type") |
| 344 | if(FUZZER STREQUAL "LibFuzzer") |
| 345 | if (NOT CMAKE_C_COMPILER_ID STREQUAL "Clang") |
| 346 | message(FATAL_ERROR "LibFuzzer works only with clang") |
| 347 | endif() |
| 348 | set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fsanitize=address,undefined -fno-omit-frame-pointer") |
| 349 | endif() |
Michal Vasko | 5aa44c0 | 2020-06-29 11:47:02 +0200 | [diff] [blame] | 350 | endif() |
Radek Krejci | e868acc | 2020-11-13 16:42:58 +0100 | [diff] [blame] | 351 | |
| 352 | # tools - yanglint, yangre |
| 353 | add_subdirectory(tools) |
| 354 | |
| 355 | # generate doxygen documentation for libyang API |
| 356 | libyang_doc() |
| 357 | |
| 358 | # generate API/ABI report |
| 359 | if ("${BUILD_TYPE_UPPER}" STREQUAL "ABICHECK") |
| 360 | libyang_abicheck() |
| 361 | endif() |
| 362 | |
Radek Krejci | 5348e6c | 2021-04-13 21:18:51 +0200 | [diff] [blame] | 363 | # source code format target for Makefile |
| 364 | # - add it after tests which may also update list of sources to format |
| 365 | source_format(${format_sources}) |
Radek Krejci | e868acc | 2020-11-13 16:42:58 +0100 | [diff] [blame] | 366 | |
| 367 | # clean cmake cache |
| 368 | add_custom_target(cclean |
| 369 | COMMAND make clean |
| 370 | COMMAND find . -iname '*cmake*' -not -name CMakeLists.txt -not -path './CMakeModules*' -exec rm -rf {} + |
| 371 | COMMAND rm -rf Makefile Doxyfile |
| 372 | WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}) |
| 373 | |