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