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) |
Michal Vasko | 3b62f3b | 2021-05-25 08:53:38 +0200 | [diff] [blame] | 18 | include(GenDoc) |
Michal Vasko | d77e5af | 2021-06-04 08:32:29 +0200 | [diff] [blame] | 19 | include(GenCoverage) |
Radek Krejci | 88ad4be | 2020-10-03 12:27:05 +0200 | [diff] [blame] | 20 | |
| 21 | # set default build type if not specified by user |
| 22 | if(NOT CMAKE_BUILD_TYPE) |
| 23 | set(CMAKE_BUILD_TYPE Debug) |
| 24 | endif() |
| 25 | # normalize build type string |
Jan Kundrát | db1a644 | 2021-09-20 18:04:13 +0200 | [diff] [blame] | 26 | # see https://github.com/CESNET/libyang/pull/1692 for why CMAKE_C_FLAGS_<type> are not used directly |
Radek Krejci | 88ad4be | 2020-10-03 12:27:05 +0200 | [diff] [blame] | 27 | string(TOUPPER "${CMAKE_BUILD_TYPE}" BUILD_TYPE_UPPER) |
| 28 | if ("${BUILD_TYPE_UPPER}" STREQUAL "RELEASE") |
Michal Vasko | 8088602 | 2021-05-25 17:25:04 +0200 | [diff] [blame] | 29 | set(CMAKE_BUILD_TYPE "Release" CACHE STRING "Build Type" FORCE) |
Jan Kundrát | db1a644 | 2021-09-20 18:04:13 +0200 | [diff] [blame] | 30 | set(CMAKE_C_FLAGS "-DNDEBUG -O2 ${CMAKE_C_FLAGS}") |
Michal Vasko | 8088602 | 2021-05-25 17:25:04 +0200 | [diff] [blame] | 31 | elseif("${BUILD_TYPE_UPPER}" STREQUAL "DEBUG") |
| 32 | set(CMAKE_BUILD_TYPE "Debug" CACHE STRING "Build Type" FORCE) |
Jan Kundrát | db1a644 | 2021-09-20 18:04:13 +0200 | [diff] [blame] | 33 | set(CMAKE_C_FLAGS "-g3 -O0 ${CMAKE_C_FLAGS}") |
Michal Vasko | 8088602 | 2021-05-25 17:25:04 +0200 | [diff] [blame] | 34 | elseif("${BUILD_TYPE_UPPER}" STREQUAL "RELWITHDEBINFO") |
| 35 | set(CMAKE_BUILD_TYPE "RelWithDebInfo" CACHE STRING "Build Type" FORCE) |
| 36 | elseif("${BUILD_TYPE_UPPER}" STREQUAL "RELWITHDEBUG") |
| 37 | set(CMAKE_BUILD_TYPE "RelWithDebug" CACHE STRING "Build Type" FORCE) |
| 38 | elseif("${BUILD_TYPE_UPPER}" STREQUAL "ABICHECK") |
| 39 | set(CMAKE_BUILD_TYPE "ABICheck" CACHE STRING "Build Type" FORCE) |
Jan Kundrát | db1a644 | 2021-09-20 18:04:13 +0200 | [diff] [blame] | 40 | set(CMAKE_C_FLAGS "-g -Og ${CMAKE_C_FLAGS}") |
Michal Vasko | 8088602 | 2021-05-25 17:25:04 +0200 | [diff] [blame] | 41 | elseif("${BUILD_TYPE_UPPER}" STREQUAL "DOCONLY") |
| 42 | set(CMAKE_BUILD_TYPE "DocOnly" CACHE STRING "Build Type" FORCE) |
Jakov Smolic | 2095558 | 2021-05-18 19:18:23 +0100 | [diff] [blame] | 43 | endif() |
Radek Krejci | 88ad4be | 2020-10-03 12:27:05 +0200 | [diff] [blame] | 44 | |
| 45 | # check the supported platform |
| 46 | if(NOT UNIX) |
| 47 | message(FATAL_ERROR "Only *nix like systems are supported.") |
| 48 | endif() |
| 49 | |
| 50 | # |
| 51 | # variables |
| 52 | # |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 53 | |
| 54 | set(LIBYANG_DESCRIPTION "libyang is YANG data modelling language parser and toolkit written (and providing API) in C.") |
| 55 | |
| 56 | # Correct RPATH usage on OS X |
| 57 | set(CMAKE_MACOSX_RPATH TRUE) |
| 58 | |
Radek Krejci | cb293a3 | 2020-11-13 15:36:29 +0100 | [diff] [blame] | 59 | # keep all binaries in the build directory |
| 60 | set (CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}) |
| 61 | |
Radek Krejci | a43d69d | 2019-04-04 10:34:46 +0200 | [diff] [blame] | 62 | # set version of the project |
| 63 | set(LIBYANG_MAJOR_VERSION 2) |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 64 | set(LIBYANG_MINOR_VERSION 0) |
Michal Vasko | c2ee25c | 2021-10-19 14:11:47 +0200 | [diff] [blame] | 65 | set(LIBYANG_MICRO_VERSION 103) |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 66 | set(LIBYANG_VERSION ${LIBYANG_MAJOR_VERSION}.${LIBYANG_MINOR_VERSION}.${LIBYANG_MICRO_VERSION}) |
Radek Krejci | a43d69d | 2019-04-04 10:34:46 +0200 | [diff] [blame] | 67 | # set version of the library |
| 68 | set(LIBYANG_MAJOR_SOVERSION 2) |
Michal Vasko | 759b882 | 2021-10-19 14:11:35 +0200 | [diff] [blame] | 69 | set(LIBYANG_MINOR_SOVERSION 12) |
Michal Vasko | 11cfef2 | 2021-10-19 11:30:52 +0200 | [diff] [blame] | 70 | set(LIBYANG_MICRO_SOVERSION 0) |
Radek Krejci | a43d69d | 2019-04-04 10:34:46 +0200 | [diff] [blame] | 71 | set(LIBYANG_SOVERSION_FULL ${LIBYANG_MAJOR_SOVERSION}.${LIBYANG_MINOR_SOVERSION}.${LIBYANG_MICRO_SOVERSION}) |
| 72 | set(LIBYANG_SOVERSION ${LIBYANG_MAJOR_SOVERSION}) |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 73 | |
Michal Vasko | 608b0c0 | 2021-09-23 08:26:53 +0200 | [diff] [blame] | 74 | # global C flags |
Michal Vasko | 4256e9a | 2021-09-23 08:37:52 +0200 | [diff] [blame] | 75 | set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -Wpedantic -std=c11") |
Radek Krejci | 8c1054b | 2019-05-17 10:18:54 +0200 | [diff] [blame] | 76 | |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 77 | include_directories(${PROJECT_BINARY_DIR}/src ${PROJECT_SOURCE_DIR}/src) |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 78 | |
Radek Krejci | 64b4304 | 2021-04-26 09:27:43 +0200 | [diff] [blame] | 79 | # type plugins are separate because they have their documentation generated |
| 80 | set(type_plugins |
| 81 | src/plugins_types/binary.c |
| 82 | src/plugins_types/bits.c |
| 83 | src/plugins_types/boolean.c |
| 84 | src/plugins_types/decimal64.c |
| 85 | src/plugins_types/empty.c |
| 86 | src/plugins_types/enumeration.c |
| 87 | src/plugins_types/identityref.c |
| 88 | src/plugins_types/instanceid.c |
| 89 | src/plugins_types/integer.c |
| 90 | src/plugins_types/leafref.c |
| 91 | src/plugins_types/string.c |
| 92 | src/plugins_types/union.c |
Michal Vasko | 3159e78 | 2021-05-03 15:12:35 +0200 | [diff] [blame] | 93 | src/plugins_types/ipv4_address.c |
Michal Vasko | 82bf15e | 2021-05-06 16:01:56 +0200 | [diff] [blame] | 94 | src/plugins_types/ipv4_address_no_zone.c |
Radek Krejci | 37c1801 | 2021-04-26 10:37:11 +0200 | [diff] [blame] | 95 | src/plugins_types/ipv6_address.c |
Michal Vasko | 18a4a73 | 2021-05-06 16:21:44 +0200 | [diff] [blame] | 96 | src/plugins_types/ipv6_address_no_zone.c |
Michal Vasko | 15dc9fa | 2021-05-03 14:33:05 +0200 | [diff] [blame] | 97 | src/plugins_types/ipv4_prefix.c |
| 98 | src/plugins_types/ipv6_prefix.c |
Radek Krejci | 64b4304 | 2021-04-26 09:27:43 +0200 | [diff] [blame] | 99 | src/plugins_types/date_and_time.c |
Michal Vasko | 7a53c7d | 2021-08-06 11:28:57 +0200 | [diff] [blame] | 100 | src/plugins_types/xpath1.0.c |
| 101 | src/plugins_types/node_instanceid.c) |
Radek Krejci | 64b4304 | 2021-04-26 09:27:43 +0200 | [diff] [blame] | 102 | |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 103 | set(libsrc |
Michal Vasko | 1324b6c | 2018-09-07 11:16:23 +0200 | [diff] [blame] | 104 | src/common.c |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 105 | src/log.c |
| 106 | src/hash_table.c |
Radek Krejci | ad57350 | 2018-09-07 15:26:55 +0200 | [diff] [blame] | 107 | src/set.c |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 108 | src/path.c |
Michal Vasko | d59035b | 2020-07-08 12:00:06 +0200 | [diff] [blame] | 109 | src/diff.c |
Radek Krejci | d4557c6 | 2018-09-17 11:42:09 +0200 | [diff] [blame] | 110 | src/context.c |
Radek Krejci | 50f0c6b | 2020-06-18 16:31:48 +0200 | [diff] [blame] | 111 | src/json.c |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 112 | src/tree_data.c |
| 113 | src/tree_data_free.c |
| 114 | src/tree_data_helpers.c |
| 115 | src/tree_data_hash.c |
| 116 | src/parser_xml.c |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 117 | src/parser_json.c |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 118 | src/parser_lyb.c |
Michal Vasko | afac782 | 2020-10-20 14:22:26 +0200 | [diff] [blame] | 119 | src/out.c |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 120 | src/printer_data.c |
| 121 | src/printer_xml.c |
Radek Krejci | 13a57b6 | 2019-07-19 13:04:09 +0200 | [diff] [blame] | 122 | src/printer_json.c |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 123 | src/printer_lyb.c |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 124 | src/schema_compile.c |
| 125 | src/schema_compile_node.c |
| 126 | src/schema_compile_amend.c |
Michal Vasko | 7b1ad1a | 2020-11-02 15:41:27 +0100 | [diff] [blame] | 127 | src/schema_features.c |
Radek Krejci | 3f5e3db | 2018-10-11 15:57:47 +0200 | [diff] [blame] | 128 | src/tree_schema.c |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 129 | src/tree_schema_free.c |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 130 | src/tree_schema_helpers.c |
Michal Vasko | afac782 | 2020-10-20 14:22:26 +0200 | [diff] [blame] | 131 | src/in.c |
Michal Vasko | 11f76c8 | 2021-04-15 14:36:14 +0200 | [diff] [blame] | 132 | src/lyb.c |
Radek Krejci | d91dbaf | 2018-09-21 15:51:39 +0200 | [diff] [blame] | 133 | src/parser_yang.c |
David Sedlák | 3b4db24 | 2018-10-19 16:11:01 +0200 | [diff] [blame] | 134 | src/parser_yin.c |
Radek Krejci | 335332a | 2019-09-05 13:03:35 +0200 | [diff] [blame] | 135 | src/parser_stmt.c |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 136 | src/printer_schema.c |
Radek Krejci | d3ca063 | 2019-04-16 16:54:54 +0200 | [diff] [blame] | 137 | src/printer_yang.c |
FredGan | d944bdc | 2019-11-05 21:57:07 +0800 | [diff] [blame] | 138 | src/printer_yin.c |
aPiecek | 61d062b | 2020-11-02 11:05:09 +0100 | [diff] [blame] | 139 | src/printer_tree.c |
Radek Krejci | 3e6632f | 2021-03-22 22:08:21 +0100 | [diff] [blame] | 140 | src/plugins.c |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 141 | src/plugins_types.c |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 142 | src/plugins_exts.c |
Radek Krejci | f1ca0ac | 2021-04-12 16:00:06 +0200 | [diff] [blame] | 143 | src/plugins_exts/metadata.c |
| 144 | src/plugins_exts/nacm.c |
| 145 | src/plugins_exts/yangdata.c |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 146 | src/xml.c |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 147 | src/xpath.c |
Radek Krejci | 64b4304 | 2021-04-26 09:27:43 +0200 | [diff] [blame] | 148 | src/validation.c |
| 149 | ${type_plugins}) |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 150 | |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 151 | set(headers |
Radek Krejci | 6caa6ab | 2018-10-24 10:04:48 +0200 | [diff] [blame] | 152 | src/context.h |
Radek Krejci | ca376bd | 2020-06-11 16:04:06 +0200 | [diff] [blame] | 153 | src/dict.h |
Michal Vasko | afac782 | 2020-10-20 14:22:26 +0200 | [diff] [blame] | 154 | src/in.h |
Radek Krejci | a4dd00c | 2021-07-09 17:13:18 +0200 | [diff] [blame] | 155 | src/libyang.h |
| 156 | src/log.h |
| 157 | src/out.h |
Michal Vasko | 9eb2a37 | 2020-07-14 12:18:12 +0200 | [diff] [blame] | 158 | src/parser_data.h |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 159 | src/parser_schema.h |
Radek Krejci | 3e6632f | 2021-03-22 22:08:21 +0100 | [diff] [blame] | 160 | src/plugins.h |
| 161 | src/plugins_exts.h |
| 162 | src/plugins_exts_compile.h |
| 163 | src/plugins_exts_print.h |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 164 | src/plugins_types.h |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 165 | src/printer_data.h |
Radek Krejci | d3ca063 | 2019-04-16 16:54:54 +0200 | [diff] [blame] | 166 | src/printer_schema.h |
Radek Krejci | ca376bd | 2020-06-11 16:04:06 +0200 | [diff] [blame] | 167 | src/set.h |
| 168 | src/tree.h |
| 169 | src/tree_data.h |
Radek Krejci | a4dd00c | 2021-07-09 17:13:18 +0200 | [diff] [blame] | 170 | src/tree_edit.h |
Radek Krejci | ca376bd | 2020-06-11 16:04:06 +0200 | [diff] [blame] | 171 | src/tree_schema.h) |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 172 | |
Radek Krejci | 7dd69b1 | 2021-07-09 17:22:54 +0200 | [diff] [blame] | 173 | set(internal_headers |
| 174 | src/common.h |
| 175 | src/diff.h |
| 176 | src/hash_table.h |
| 177 | src/in_internal.h |
| 178 | src/json.h |
| 179 | src/lyb.h |
| 180 | src/out_internal.h |
| 181 | src/parser_internal.h |
| 182 | src/path.h |
| 183 | src/plugins_internal.h |
| 184 | src/printer_internal.h |
| 185 | src/schema_compile.h |
| 186 | src/schema_compile_amend.h |
| 187 | src/schema_compile_node.h |
| 188 | src/schema_features.h |
| 189 | src/tree_data_internal.h |
| 190 | src/tree_schema_internal.h |
| 191 | src/validation.h |
| 192 | src/xml.h |
| 193 | src/xpath.h) |
| 194 | |
Michal Vasko | 8f84952 | 2021-05-11 13:23:09 +0200 | [diff] [blame] | 195 | set(gen_headers |
| 196 | src/version.h |
| 197 | src/config.h) |
| 198 | |
Michal Vasko | 8088602 | 2021-05-25 17:25:04 +0200 | [diff] [blame] | 199 | # files to generate doxygen from |
Michal Vasko | 3b62f3b | 2021-05-25 08:53:38 +0200 | [diff] [blame] | 200 | set(doxy_files |
| 201 | doc/build.dox |
| 202 | doc/transition.dox |
| 203 | ${headers} |
| 204 | ${PROJECT_BINARY_DIR}/src/version.h |
| 205 | ${type_plugins}) |
| 206 | |
| 207 | # project (doxygen) logo |
| 208 | set(project_logo |
| 209 | doc/logo.png) |
| 210 | |
Radek Krejci | cb293a3 | 2020-11-13 15:36:29 +0100 | [diff] [blame] | 211 | # source files to be covered by the 'format' target |
| 212 | set(format_sources |
Michal Vasko | 8c14c01 | 2021-05-25 09:46:05 +0200 | [diff] [blame] | 213 | compat/*.c |
Michal Vasko | 0704b65 | 2021-05-25 09:58:37 +0200 | [diff] [blame] | 214 | compat/*.h* |
Radek Krejci | 5348e6c | 2021-04-13 21:18:51 +0200 | [diff] [blame] | 215 | src/*.c |
| 216 | src/*.h |
| 217 | src/plugins_exts/* |
| 218 | src/plugins_types/*) |
Radek Krejci | 88ad4be | 2020-10-03 12:27:05 +0200 | [diff] [blame] | 219 | # |
| 220 | # options |
| 221 | # |
| 222 | |
Radek Krejci | 88ad4be | 2020-10-03 12:27:05 +0200 | [diff] [blame] | 223 | if(("${BUILD_TYPE_UPPER}" STREQUAL "DEBUG") OR ("${BUILD_TYPE_UPPER}" STREQUAL "RELWITHDEBINFO")) |
Michal Vasko | cdffdab | 2021-06-23 14:00:10 +0200 | [diff] [blame] | 224 | option(ENABLE_TESTS "Build tests" ON) |
Radek Krejci | 88ad4be | 2020-10-03 12:27:05 +0200 | [diff] [blame] | 225 | option(ENABLE_VALGRIND_TESTS "Build tests with valgrind" ON) |
Radek Krejci | 88ad4be | 2020-10-03 12:27:05 +0200 | [diff] [blame] | 226 | else() |
Michal Vasko | cdffdab | 2021-06-23 14:00:10 +0200 | [diff] [blame] | 227 | option(ENABLE_TESTS "Build tests" OFF) |
Radek Krejci | 88ad4be | 2020-10-03 12:27:05 +0200 | [diff] [blame] | 228 | option(ENABLE_VALGRIND_TESTS "Build tests with valgrind" OFF) |
Radek Krejci | 88ad4be | 2020-10-03 12:27:05 +0200 | [diff] [blame] | 229 | endif() |
Michal Vasko | 99544ca | 2021-06-29 10:45:19 +0200 | [diff] [blame] | 230 | option(ENABLE_PERF_TESTS "Build performance tests" OFF) |
Radek Krejci | 88ad4be | 2020-10-03 12:27:05 +0200 | [diff] [blame] | 231 | option(ENABLE_COVERAGE "Build code coverage report from tests" OFF) |
| 232 | option(ENABLE_FUZZ_TARGETS "Build target programs suitable for fuzzing with AFL" OFF) |
Radek Krejci | 7dd69b1 | 2021-07-09 17:22:54 +0200 | [diff] [blame] | 233 | option(ENABLE_INTERNAL_DOCS "Generate doxygen documentation also from internal headers" OFF) |
| 234 | |
| 235 | if(ENABLE_INTERNAL_DOCS) |
| 236 | set(doxy_files ${doxy_files} ${internal_headers}) |
| 237 | set(INTERNAL_DOCS YES) |
| 238 | else() |
| 239 | set(INTERNAL_DOCS NO) |
| 240 | endif() |
Radek Krejci | 88ad4be | 2020-10-03 12:27:05 +0200 | [diff] [blame] | 241 | |
Michal Vasko | aa0ee62 | 2021-05-11 09:29:25 +0200 | [diff] [blame] | 242 | set(LYD_VALUE_SIZE "24" CACHE STRING "Maximum size in bytes of data node values that do not need to be allocated dynamically, minimum is 8") |
Christian Hopps | 6e23f9a | 2021-05-11 19:02:47 -0400 | [diff] [blame] | 243 | if(LYD_VALUE_SIZE LESS 8) |
Michal Vasko | aa0ee62 | 2021-05-11 09:29:25 +0200 | [diff] [blame] | 244 | message(FATAL_ERROR "Data node value size \"${LYD_VALUE_SIZE}\" is not valid.") |
| 245 | endif() |
Radek Krejci | 968d755 | 2021-03-26 20:33:51 +0100 | [diff] [blame] | 246 | set(PLUGINS_DIR "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}/libyang" CACHE STRING "Directory with libyang plugins (extensions and user types)") |
| 247 | set(PLUGINS_DIR_EXTENSIONS "${PLUGINS_DIR}/extensions" CACHE STRING "Directory with libyang user extensions plugins") |
| 248 | 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] | 249 | |
Radek Krejci | 88ad4be | 2020-10-03 12:27:05 +0200 | [diff] [blame] | 250 | # by default build shared library |
| 251 | # static build requires static libpcre2 library |
| 252 | option(ENABLE_STATIC "Build static (.a) library" OFF) |
| 253 | |
Michal Vasko | d77e5af | 2021-06-04 08:32:29 +0200 | [diff] [blame] | 254 | # |
| 255 | # checks |
| 256 | # |
Michal Vasko | b071be4 | 2021-06-09 11:42:45 +0200 | [diff] [blame] | 257 | if(ENABLE_STATIC) |
| 258 | message(STATUS "Disabling tests for static build") |
Michal Vasko | cdffdab | 2021-06-23 14:00:10 +0200 | [diff] [blame] | 259 | set(ENABLE_TESTS OFF) |
Michal Vasko | f74be50 | 2021-06-04 08:52:26 +0200 | [diff] [blame] | 260 | set(ENABLE_VALGRIND_TESTS OFF) |
| 261 | endif() |
| 262 | |
| 263 | if(ENABLE_VALGRIND_TESTS) |
Michal Vasko | 9aa32d1 | 2021-06-23 16:06:46 +0200 | [diff] [blame] | 264 | if(NOT ENABLE_TESTS) |
| 265 | message(WARNING "Tests are disabled! Disabling memory leak tests.") |
Michal Vasko | f74be50 | 2021-06-04 08:52:26 +0200 | [diff] [blame] | 266 | set(ENABLE_VALGRIND_TESTS OFF) |
| 267 | else() |
Michal Vasko | 9aa32d1 | 2021-06-23 16:06:46 +0200 | [diff] [blame] | 268 | find_program(VALGRIND_FOUND valgrind) |
| 269 | if(NOT VALGRIND_FOUND) |
| 270 | message(WARNING "valgrind executable not found! Disabling memory leak tests.") |
| 271 | set(ENABLE_VALGRIND_TESTS OFF) |
| 272 | endif() |
Michal Vasko | f74be50 | 2021-06-04 08:52:26 +0200 | [diff] [blame] | 273 | endif() |
| 274 | endif() |
| 275 | |
Michal Vasko | cdffdab | 2021-06-23 14:00:10 +0200 | [diff] [blame] | 276 | if(ENABLE_TESTS) |
Michal Vasko | 5b9c5c7 | 2021-10-07 09:24:38 +0200 | [diff] [blame] | 277 | find_package(CMocka 1.0.1) |
Michal Vasko | d77e5af | 2021-06-04 08:32:29 +0200 | [diff] [blame] | 278 | if(NOT CMOCKA_FOUND) |
| 279 | message(STATUS "Disabling tests because of missing CMocka") |
Michal Vasko | cdffdab | 2021-06-23 14:00:10 +0200 | [diff] [blame] | 280 | set(ENABLE_TESTS OFF) |
Michal Vasko | d77e5af | 2021-06-04 08:32:29 +0200 | [diff] [blame] | 281 | endif() |
Michal Vasko | 9aa32d1 | 2021-06-23 16:06:46 +0200 | [diff] [blame] | 282 | endif() |
Michal Vasko | d77e5af | 2021-06-04 08:32:29 +0200 | [diff] [blame] | 283 | |
Michal Vasko | 99544ca | 2021-06-29 10:45:19 +0200 | [diff] [blame] | 284 | if(ENABLE_PERF_TESTS) |
Michal Vasko | 597b423 | 2021-07-01 11:40:40 +0200 | [diff] [blame] | 285 | find_path(VALGRIND_INCLUDE_DIR |
Michal Vasko | 99544ca | 2021-06-29 10:45:19 +0200 | [diff] [blame] | 286 | NAMES |
| 287 | valgrind/callgrind.h |
| 288 | PATHS |
| 289 | /usr/include |
| 290 | /usr/local/include |
| 291 | /opt/local/include |
| 292 | /sw/include |
| 293 | ${CMAKE_INCLUDE_PATH} |
| 294 | ${CMAKE_INSTALL_PREFIX}/include) |
Michal Vasko | 597b423 | 2021-07-01 11:40:40 +0200 | [diff] [blame] | 295 | if(VALGRIND_INCLUDE_DIR) |
Michal Vasko | 99544ca | 2021-06-29 10:45:19 +0200 | [diff] [blame] | 296 | set(HAVE_CALLGRIND 1) |
| 297 | else() |
Michal Vasko | 597b423 | 2021-07-01 11:40:40 +0200 | [diff] [blame] | 298 | message(STATUS "Disabling callgrind macros in performance tests because of missing valgrind headers") |
Michal Vasko | 99544ca | 2021-06-29 10:45:19 +0200 | [diff] [blame] | 299 | endif() |
| 300 | endif() |
| 301 | |
Michal Vasko | d77e5af | 2021-06-04 08:32:29 +0200 | [diff] [blame] | 302 | if(ENABLE_COVERAGE) |
Michal Vasko | cdffdab | 2021-06-23 14:00:10 +0200 | [diff] [blame] | 303 | gen_coverage_enable(${ENABLE_TESTS}) |
Michal Vasko | d77e5af | 2021-06-04 08:32:29 +0200 | [diff] [blame] | 304 | endif() |
| 305 | |
| 306 | if ("${BUILD_TYPE_UPPER}" STREQUAL "DEBUG") |
| 307 | # enable before adding tests to let them detect that format checking is available - one of the tests is format checking |
| 308 | source_format_enable() |
| 309 | endif() |
| 310 | |
Michal Vasko | aa0ee62 | 2021-05-11 09:29:25 +0200 | [diff] [blame] | 311 | # generate files |
| 312 | configure_file(${PROJECT_SOURCE_DIR}/src/config.h.in ${PROJECT_BINARY_DIR}/src/config.h @ONLY) |
| 313 | configure_file(${PROJECT_SOURCE_DIR}/src/version.h.in ${PROJECT_BINARY_DIR}/src/version.h @ONLY) |
| 314 | |
Michal Vasko | 8088602 | 2021-05-25 17:25:04 +0200 | [diff] [blame] | 315 | # DOC-only target with no extra dependencies |
| 316 | if("${BUILD_TYPE_UPPER}" STREQUAL "DOCONLY") |
| 317 | gen_doc("${doxy_files}" ${LIBYANG_VERSION} ${LIBYANG_DESCRIPTION} ${project_logo}) |
| 318 | return() |
| 319 | endif() |
| 320 | |
Radek Krejci | 88ad4be | 2020-10-03 12:27:05 +0200 | [diff] [blame] | 321 | # |
| 322 | # targets |
| 323 | # |
| 324 | |
Michal Vasko | 5aa44c0 | 2020-06-29 11:47:02 +0200 | [diff] [blame] | 325 | # link compat |
| 326 | use_compat() |
| 327 | |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 328 | # create static libyang library |
| 329 | if(ENABLE_STATIC) |
| 330 | add_definitions(-DSTATIC) |
| 331 | set(CMAKE_EXE_LINKER_FLAGS -static) |
| 332 | set(CMAKE_FIND_LIBRARY_SUFFIXES .a) |
Michal Vasko | b071be4 | 2021-06-09 11:42:45 +0200 | [diff] [blame] | 333 | set(CMAKE_LINK_SEARCH_START_STATIC TRUE) |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 334 | set(CMAKE_EXE_LINK_DYNAMIC_C_FLAGS) # remove -Wl,-Bdynamic |
| 335 | set(CMAKE_EXE_LINK_DYNAMIC_CXX_FLAGS) |
Michal Vasko | 1b0b9a1 | 2021-05-06 08:38:34 +0200 | [diff] [blame] | 336 | add_library(yang STATIC ${libsrc} ${compatsrc}) |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 337 | else() |
| 338 | set(CMAKE_POSITION_INDEPENDENT_CODE TRUE) |
Michal Vasko | 1b0b9a1 | 2021-05-06 08:38:34 +0200 | [diff] [blame] | 339 | add_library(yangobj OBJECT ${libsrc} ${compatsrc}) |
Michal Vasko | b071be4 | 2021-06-09 11:42:45 +0200 | [diff] [blame] | 340 | set_target_properties(yangobj PROPERTIES COMPILE_FLAGS "-fvisibility=hidden") |
Michal Vasko | 1b0b9a1 | 2021-05-06 08:38:34 +0200 | [diff] [blame] | 341 | add_library(yang SHARED $<TARGET_OBJECTS:yangobj>) |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 342 | |
| 343 | #link dl |
| 344 | target_link_libraries(yang ${CMAKE_DL_LIBS}) |
Michal Vasko | 5aa44c0 | 2020-06-29 11:47:02 +0200 | [diff] [blame] | 345 | endif() |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 346 | |
Radek Krejci | a43d69d | 2019-04-04 10:34:46 +0200 | [diff] [blame] | 347 | set_target_properties(yang PROPERTIES VERSION ${LIBYANG_SOVERSION_FULL} SOVERSION ${LIBYANG_SOVERSION}) |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 348 | |
| 349 | # link math |
| 350 | target_link_libraries(yang m) |
| 351 | |
| 352 | # find pthreads |
| 353 | set(CMAKE_THREAD_PREFER_PTHREAD TRUE) |
| 354 | find_package(Threads REQUIRED) |
| 355 | if(ENABLE_STATIC) |
| 356 | target_link_libraries(yang -Wl,--whole-archive ${CMAKE_THREAD_LIBS_INIT} -Wl,--no-whole-archive) |
| 357 | else() |
| 358 | target_link_libraries(yang ${CMAKE_THREAD_LIBS_INIT}) |
Michal Vasko | 5aa44c0 | 2020-06-29 11:47:02 +0200 | [diff] [blame] | 359 | endif() |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 360 | |
Radek Krejci | 5457946 | 2019-04-30 12:47:06 +0200 | [diff] [blame] | 361 | # find PCRE2 library |
| 362 | unset(PCRE2_LIBRARY CACHE) |
Christian Hopps | dafed22 | 2021-03-22 13:02:42 -0400 | [diff] [blame] | 363 | find_package(PCRE2 10.21 REQUIRED) |
Radek Krejci | 5457946 | 2019-04-30 12:47:06 +0200 | [diff] [blame] | 364 | include_directories(${PCRE2_INCLUDE_DIRS}) |
| 365 | target_link_libraries(yang ${PCRE2_LIBRARIES}) |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 366 | |
Michal Vasko | 36f210e | 2021-05-11 13:56:46 +0200 | [diff] [blame] | 367 | # generated header list |
| 368 | foreach(h IN LISTS gen_headers) |
| 369 | list(APPEND g_headers ${PROJECT_BINARY_DIR}/${h}) |
| 370 | endforeach() |
| 371 | |
| 372 | # install all library files |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 373 | install(TARGETS yang DESTINATION ${CMAKE_INSTALL_LIBDIR}) |
Michal Vasko | 36f210e | 2021-05-11 13:56:46 +0200 | [diff] [blame] | 374 | install(FILES ${headers} ${g_headers} DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/libyang) |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 375 | |
| 376 | find_package(PkgConfig) |
| 377 | if(PKG_CONFIG_FOUND) |
| 378 | # generate and install pkg-config file |
| 379 | configure_file("libyang.pc.in" "libyang.pc" @ONLY) |
| 380 | install(FILES "${CMAKE_CURRENT_BINARY_DIR}/libyang.pc" DESTINATION "${CMAKE_INSTALL_LIBDIR}/pkgconfig") |
| 381 | # check that pkg-config includes the used path |
| 382 | execute_process(COMMAND ${PKG_CONFIG_EXECUTABLE} --variable pc_path pkg-config RESULT_VARIABLE RETURN OUTPUT_VARIABLE PC_PATH ERROR_QUIET) |
| 383 | if(RETURN EQUAL 0) |
Michal Vasko | d77e5af | 2021-06-04 08:32:29 +0200 | [diff] [blame] | 384 | string(STRIP "${PC_PATH}" PC_PATH) |
| 385 | set(PC_PATH "${PC_PATH}:$ENV{PKG_CONFIG_PATH}") |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 386 | string(REGEX MATCH "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}/pkgconfig" SUBSTR "${PC_PATH}") |
| 387 | string(LENGTH "${SUBSTR}" SUBSTR_LEN) |
| 388 | if(SUBSTR_LEN EQUAL 0) |
| 389 | 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\".") |
| 390 | endif() |
| 391 | endif() |
| 392 | endif() |
| 393 | |
Radek Krejci | cb293a3 | 2020-11-13 15:36:29 +0100 | [diff] [blame] | 394 | # tests |
Michal Vasko | 99544ca | 2021-06-29 10:45:19 +0200 | [diff] [blame] | 395 | if(ENABLE_TESTS OR ENABLE_PERF_TESTS) |
Michal Vasko | d77e5af | 2021-06-04 08:32:29 +0200 | [diff] [blame] | 396 | enable_testing() |
| 397 | add_subdirectory(tests) |
Michal Vasko | 5aa44c0 | 2020-06-29 11:47:02 +0200 | [diff] [blame] | 398 | endif() |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 399 | |
Juraj Vijtiuk | 04f7127 | 2019-08-07 06:49:00 -0400 | [diff] [blame] | 400 | if(ENABLE_FUZZ_TARGETS) |
Michal Vasko | 5aa44c0 | 2020-06-29 11:47:02 +0200 | [diff] [blame] | 401 | set(FUZZER "AFL" CACHE STRING "fuzzer type") |
| 402 | if(FUZZER STREQUAL "LibFuzzer") |
| 403 | if (NOT CMAKE_C_COMPILER_ID STREQUAL "Clang") |
| 404 | message(FATAL_ERROR "LibFuzzer works only with clang") |
| 405 | endif() |
| 406 | set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fsanitize=address,undefined -fno-omit-frame-pointer") |
| 407 | endif() |
Michal Vasko | 5aa44c0 | 2020-06-29 11:47:02 +0200 | [diff] [blame] | 408 | endif() |
Radek Krejci | e868acc | 2020-11-13 16:42:58 +0100 | [diff] [blame] | 409 | |
Michal Vasko | d77e5af | 2021-06-04 08:32:29 +0200 | [diff] [blame] | 410 | # create coverage target for generating coverage reports |
| 411 | gen_coverage("utest_.*" "utest_.*_valgrind") |
| 412 | |
Radek Krejci | e868acc | 2020-11-13 16:42:58 +0100 | [diff] [blame] | 413 | # tools - yanglint, yangre |
| 414 | add_subdirectory(tools) |
| 415 | |
| 416 | # generate doxygen documentation for libyang API |
Michal Vasko | 3b62f3b | 2021-05-25 08:53:38 +0200 | [diff] [blame] | 417 | gen_doc("${doxy_files}" ${LIBYANG_VERSION} ${LIBYANG_DESCRIPTION} ${project_logo}) |
Radek Krejci | e868acc | 2020-11-13 16:42:58 +0100 | [diff] [blame] | 418 | |
| 419 | # generate API/ABI report |
| 420 | if ("${BUILD_TYPE_UPPER}" STREQUAL "ABICHECK") |
Michal Vasko | d5bb5c2 | 2021-07-09 09:30:53 +0200 | [diff] [blame] | 421 | lib_abi_check(yang "${headers}" ${LIBYANG_SOVERSION_FULL} 4de7d0740b95feb6f540c645c2dad007e3ea7bdc) |
Radek Krejci | e868acc | 2020-11-13 16:42:58 +0100 | [diff] [blame] | 422 | endif() |
| 423 | |
Radek Krejci | 5348e6c | 2021-04-13 21:18:51 +0200 | [diff] [blame] | 424 | # source code format target for Makefile |
| 425 | # - add it after tests which may also update list of sources to format |
| 426 | source_format(${format_sources}) |
Radek Krejci | e868acc | 2020-11-13 16:42:58 +0100 | [diff] [blame] | 427 | |
Michal Vasko | 51b7d5c | 2021-06-21 08:28:18 +0200 | [diff] [blame] | 428 | # uninstall |
| 429 | add_custom_target(uninstall "${CMAKE_COMMAND}" -P "${CMAKE_MODULE_PATH}/uninstall.cmake") |
| 430 | |
Radek Krejci | e868acc | 2020-11-13 16:42:58 +0100 | [diff] [blame] | 431 | # clean cmake cache |
| 432 | add_custom_target(cclean |
| 433 | COMMAND make clean |
| 434 | COMMAND find . -iname '*cmake*' -not -name CMakeLists.txt -not -path './CMakeModules*' -exec rm -rf {} + |
| 435 | COMMAND rm -rf Makefile Doxyfile |
| 436 | WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}) |
| 437 | |