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