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 | 5b8b980 | 2021-06-28 11:24:59 +0200 | [diff] [blame] | 61 | set(LIBYANG_MICRO_VERSION 26) |
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 | 7061c68 | 2021-06-28 11:24:34 +0200 | [diff] [blame] | 65 | set(LIBYANG_MINOR_SOVERSION 3) |
| 66 | set(LIBYANG_MICRO_SOVERSION 0) |
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 |
| 149 | src/libyang.h |
Radek Krejci | 6caa6ab | 2018-10-24 10:04:48 +0200 | [diff] [blame] | 150 | src/context.h |
Radek Krejci | ca376bd | 2020-06-11 16:04:06 +0200 | [diff] [blame] | 151 | src/dict.h |
| 152 | src/log.h |
Michal Vasko | afac782 | 2020-10-20 14:22:26 +0200 | [diff] [blame] | 153 | src/in.h |
Michal Vasko | 9eb2a37 | 2020-07-14 12:18:12 +0200 | [diff] [blame] | 154 | src/parser_data.h |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 155 | src/parser_schema.h |
Radek Krejci | 3e6632f | 2021-03-22 22:08:21 +0100 | [diff] [blame] | 156 | src/plugins.h |
| 157 | src/plugins_exts.h |
| 158 | src/plugins_exts_compile.h |
| 159 | src/plugins_exts_print.h |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 160 | src/plugins_types.h |
Michal Vasko | afac782 | 2020-10-20 14:22:26 +0200 | [diff] [blame] | 161 | src/out.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 |
Michal Vasko | 8fcd1e9 | 2021-04-15 14:42:58 +0200 | [diff] [blame] | 166 | src/tree_edit.h |
Radek Krejci | ca376bd | 2020-06-11 16:04:06 +0200 | [diff] [blame] | 167 | src/tree_data.h |
| 168 | src/tree_schema.h) |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 169 | |
Michal Vasko | 8f84952 | 2021-05-11 13:23:09 +0200 | [diff] [blame] | 170 | set(gen_headers |
| 171 | src/version.h |
| 172 | src/config.h) |
| 173 | |
Michal Vasko | 8088602 | 2021-05-25 17:25:04 +0200 | [diff] [blame] | 174 | # files to generate doxygen from |
Michal Vasko | 3b62f3b | 2021-05-25 08:53:38 +0200 | [diff] [blame] | 175 | set(doxy_files |
| 176 | doc/build.dox |
| 177 | doc/transition.dox |
| 178 | ${headers} |
| 179 | ${PROJECT_BINARY_DIR}/src/version.h |
| 180 | ${type_plugins}) |
| 181 | |
| 182 | # project (doxygen) logo |
| 183 | set(project_logo |
| 184 | doc/logo.png) |
| 185 | |
Radek Krejci | cb293a3 | 2020-11-13 15:36:29 +0100 | [diff] [blame] | 186 | # source files to be covered by the 'format' target |
| 187 | set(format_sources |
Michal Vasko | 8c14c01 | 2021-05-25 09:46:05 +0200 | [diff] [blame] | 188 | compat/*.c |
Michal Vasko | 0704b65 | 2021-05-25 09:58:37 +0200 | [diff] [blame] | 189 | compat/*.h* |
Radek Krejci | 5348e6c | 2021-04-13 21:18:51 +0200 | [diff] [blame] | 190 | src/*.c |
| 191 | src/*.h |
| 192 | src/plugins_exts/* |
| 193 | src/plugins_types/*) |
Radek Krejci | 88ad4be | 2020-10-03 12:27:05 +0200 | [diff] [blame] | 194 | # |
| 195 | # options |
| 196 | # |
| 197 | |
Radek Krejci | 88ad4be | 2020-10-03 12:27:05 +0200 | [diff] [blame] | 198 | if(("${BUILD_TYPE_UPPER}" STREQUAL "DEBUG") OR ("${BUILD_TYPE_UPPER}" STREQUAL "RELWITHDEBINFO")) |
Michal Vasko | cdffdab | 2021-06-23 14:00:10 +0200 | [diff] [blame] | 199 | option(ENABLE_TESTS "Build tests" ON) |
Radek Krejci | 88ad4be | 2020-10-03 12:27:05 +0200 | [diff] [blame] | 200 | option(ENABLE_VALGRIND_TESTS "Build tests with valgrind" ON) |
Radek Krejci | 7132fc5 | 2020-10-26 14:34:06 +0100 | [diff] [blame] | 201 | # TODO enable when the internal docs ready |
Radek Krejci | 685ef86 | 2020-11-05 12:55:26 +0100 | [diff] [blame] | 202 | set(INTERNAL_DOCS NO) |
Radek Krejci | 88ad4be | 2020-10-03 12:27:05 +0200 | [diff] [blame] | 203 | else() |
Michal Vasko | cdffdab | 2021-06-23 14:00:10 +0200 | [diff] [blame] | 204 | option(ENABLE_TESTS "Build tests" OFF) |
Radek Krejci | 88ad4be | 2020-10-03 12:27:05 +0200 | [diff] [blame] | 205 | option(ENABLE_VALGRIND_TESTS "Build tests with valgrind" OFF) |
Radek Krejci | 685ef86 | 2020-11-05 12:55:26 +0100 | [diff] [blame] | 206 | set(INTERNAL_DOCS NO) |
Radek Krejci | 88ad4be | 2020-10-03 12:27:05 +0200 | [diff] [blame] | 207 | endif() |
Michal Vasko | 99544ca | 2021-06-29 10:45:19 +0200 | [diff] [blame] | 208 | option(ENABLE_PERF_TESTS "Build performance tests" OFF) |
Radek Krejci | 88ad4be | 2020-10-03 12:27:05 +0200 | [diff] [blame] | 209 | option(ENABLE_COVERAGE "Build code coverage report from tests" OFF) |
| 210 | 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] | 211 | |
Michal Vasko | aa0ee62 | 2021-05-11 09:29:25 +0200 | [diff] [blame] | 212 | 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] | 213 | if(LYD_VALUE_SIZE LESS 8) |
Michal Vasko | aa0ee62 | 2021-05-11 09:29:25 +0200 | [diff] [blame] | 214 | message(FATAL_ERROR "Data node value size \"${LYD_VALUE_SIZE}\" is not valid.") |
| 215 | endif() |
Radek Krejci | 968d755 | 2021-03-26 20:33:51 +0100 | [diff] [blame] | 216 | set(PLUGINS_DIR "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}/libyang" CACHE STRING "Directory with libyang plugins (extensions and user types)") |
| 217 | set(PLUGINS_DIR_EXTENSIONS "${PLUGINS_DIR}/extensions" CACHE STRING "Directory with libyang user extensions plugins") |
| 218 | 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] | 219 | |
Radek Krejci | 88ad4be | 2020-10-03 12:27:05 +0200 | [diff] [blame] | 220 | # by default build shared library |
| 221 | # static build requires static libpcre2 library |
| 222 | option(ENABLE_STATIC "Build static (.a) library" OFF) |
| 223 | |
Michal Vasko | d77e5af | 2021-06-04 08:32:29 +0200 | [diff] [blame] | 224 | # |
| 225 | # checks |
| 226 | # |
Michal Vasko | b071be4 | 2021-06-09 11:42:45 +0200 | [diff] [blame] | 227 | if(ENABLE_STATIC) |
| 228 | message(STATUS "Disabling tests for static build") |
Michal Vasko | cdffdab | 2021-06-23 14:00:10 +0200 | [diff] [blame] | 229 | set(ENABLE_TESTS OFF) |
Michal Vasko | f74be50 | 2021-06-04 08:52:26 +0200 | [diff] [blame] | 230 | set(ENABLE_VALGRIND_TESTS OFF) |
| 231 | endif() |
| 232 | |
| 233 | if(ENABLE_VALGRIND_TESTS) |
Michal Vasko | 9aa32d1 | 2021-06-23 16:06:46 +0200 | [diff] [blame] | 234 | if(NOT ENABLE_TESTS) |
| 235 | message(WARNING "Tests are disabled! Disabling memory leak tests.") |
Michal Vasko | f74be50 | 2021-06-04 08:52:26 +0200 | [diff] [blame] | 236 | set(ENABLE_VALGRIND_TESTS OFF) |
| 237 | else() |
Michal Vasko | 9aa32d1 | 2021-06-23 16:06:46 +0200 | [diff] [blame] | 238 | find_program(VALGRIND_FOUND valgrind) |
| 239 | if(NOT VALGRIND_FOUND) |
| 240 | message(WARNING "valgrind executable not found! Disabling memory leak tests.") |
| 241 | set(ENABLE_VALGRIND_TESTS OFF) |
| 242 | endif() |
Michal Vasko | f74be50 | 2021-06-04 08:52:26 +0200 | [diff] [blame] | 243 | endif() |
| 244 | endif() |
| 245 | |
Michal Vasko | cdffdab | 2021-06-23 14:00:10 +0200 | [diff] [blame] | 246 | if(ENABLE_TESTS) |
Michal Vasko | d77e5af | 2021-06-04 08:32:29 +0200 | [diff] [blame] | 247 | find_package(CMocka 1.0.0) |
| 248 | if(NOT CMOCKA_FOUND) |
| 249 | message(STATUS "Disabling tests because of missing CMocka") |
Michal Vasko | cdffdab | 2021-06-23 14:00:10 +0200 | [diff] [blame] | 250 | set(ENABLE_TESTS OFF) |
Michal Vasko | d77e5af | 2021-06-04 08:32:29 +0200 | [diff] [blame] | 251 | endif() |
Michal Vasko | 9aa32d1 | 2021-06-23 16:06:46 +0200 | [diff] [blame] | 252 | endif() |
Michal Vasko | d77e5af | 2021-06-04 08:32:29 +0200 | [diff] [blame] | 253 | |
Michal Vasko | 99544ca | 2021-06-29 10:45:19 +0200 | [diff] [blame] | 254 | if(ENABLE_PERF_TESTS) |
| 255 | find_path(CALLGRIND_INCLUDE_DIR |
| 256 | NAMES |
| 257 | valgrind/callgrind.h |
| 258 | PATHS |
| 259 | /usr/include |
| 260 | /usr/local/include |
| 261 | /opt/local/include |
| 262 | /sw/include |
| 263 | ${CMAKE_INCLUDE_PATH} |
| 264 | ${CMAKE_INSTALL_PREFIX}/include) |
| 265 | if(CALLGRIND_INCLUDE_DIR) |
| 266 | set(HAVE_CALLGRIND 1) |
| 267 | else() |
| 268 | message(STATUS "Disabling callgrind macros in performance tests because of missing headers") |
| 269 | endif() |
| 270 | endif() |
| 271 | |
Michal Vasko | d77e5af | 2021-06-04 08:32:29 +0200 | [diff] [blame] | 272 | if(ENABLE_COVERAGE) |
Michal Vasko | cdffdab | 2021-06-23 14:00:10 +0200 | [diff] [blame] | 273 | gen_coverage_enable(${ENABLE_TESTS}) |
Michal Vasko | d77e5af | 2021-06-04 08:32:29 +0200 | [diff] [blame] | 274 | endif() |
| 275 | |
| 276 | if ("${BUILD_TYPE_UPPER}" STREQUAL "DEBUG") |
| 277 | # enable before adding tests to let them detect that format checking is available - one of the tests is format checking |
| 278 | source_format_enable() |
| 279 | endif() |
| 280 | |
Michal Vasko | aa0ee62 | 2021-05-11 09:29:25 +0200 | [diff] [blame] | 281 | # generate files |
| 282 | configure_file(${PROJECT_SOURCE_DIR}/src/config.h.in ${PROJECT_BINARY_DIR}/src/config.h @ONLY) |
| 283 | configure_file(${PROJECT_SOURCE_DIR}/src/version.h.in ${PROJECT_BINARY_DIR}/src/version.h @ONLY) |
| 284 | |
Michal Vasko | 8088602 | 2021-05-25 17:25:04 +0200 | [diff] [blame] | 285 | # DOC-only target with no extra dependencies |
| 286 | if("${BUILD_TYPE_UPPER}" STREQUAL "DOCONLY") |
| 287 | gen_doc("${doxy_files}" ${LIBYANG_VERSION} ${LIBYANG_DESCRIPTION} ${project_logo}) |
| 288 | return() |
| 289 | endif() |
| 290 | |
Radek Krejci | 88ad4be | 2020-10-03 12:27:05 +0200 | [diff] [blame] | 291 | # |
| 292 | # targets |
| 293 | # |
| 294 | |
Michal Vasko | 5aa44c0 | 2020-06-29 11:47:02 +0200 | [diff] [blame] | 295 | # link compat |
| 296 | use_compat() |
| 297 | |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 298 | # create static libyang library |
| 299 | if(ENABLE_STATIC) |
| 300 | add_definitions(-DSTATIC) |
| 301 | set(CMAKE_EXE_LINKER_FLAGS -static) |
| 302 | set(CMAKE_FIND_LIBRARY_SUFFIXES .a) |
Michal Vasko | b071be4 | 2021-06-09 11:42:45 +0200 | [diff] [blame] | 303 | set(CMAKE_LINK_SEARCH_START_STATIC TRUE) |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 304 | set(CMAKE_EXE_LINK_DYNAMIC_C_FLAGS) # remove -Wl,-Bdynamic |
| 305 | set(CMAKE_EXE_LINK_DYNAMIC_CXX_FLAGS) |
Michal Vasko | 1b0b9a1 | 2021-05-06 08:38:34 +0200 | [diff] [blame] | 306 | add_library(yang STATIC ${libsrc} ${compatsrc}) |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 307 | else() |
| 308 | set(CMAKE_POSITION_INDEPENDENT_CODE TRUE) |
Michal Vasko | 1b0b9a1 | 2021-05-06 08:38:34 +0200 | [diff] [blame] | 309 | add_library(yangobj OBJECT ${libsrc} ${compatsrc}) |
Michal Vasko | b071be4 | 2021-06-09 11:42:45 +0200 | [diff] [blame] | 310 | set_target_properties(yangobj PROPERTIES COMPILE_FLAGS "-fvisibility=hidden") |
Michal Vasko | 1b0b9a1 | 2021-05-06 08:38:34 +0200 | [diff] [blame] | 311 | add_library(yang SHARED $<TARGET_OBJECTS:yangobj>) |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 312 | |
| 313 | #link dl |
| 314 | target_link_libraries(yang ${CMAKE_DL_LIBS}) |
Michal Vasko | 5aa44c0 | 2020-06-29 11:47:02 +0200 | [diff] [blame] | 315 | endif() |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 316 | |
Radek Krejci | a43d69d | 2019-04-04 10:34:46 +0200 | [diff] [blame] | 317 | set_target_properties(yang PROPERTIES VERSION ${LIBYANG_SOVERSION_FULL} SOVERSION ${LIBYANG_SOVERSION}) |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 318 | |
| 319 | # link math |
| 320 | target_link_libraries(yang m) |
| 321 | |
| 322 | # find pthreads |
| 323 | set(CMAKE_THREAD_PREFER_PTHREAD TRUE) |
| 324 | find_package(Threads REQUIRED) |
| 325 | if(ENABLE_STATIC) |
| 326 | target_link_libraries(yang -Wl,--whole-archive ${CMAKE_THREAD_LIBS_INIT} -Wl,--no-whole-archive) |
| 327 | else() |
| 328 | target_link_libraries(yang ${CMAKE_THREAD_LIBS_INIT}) |
Michal Vasko | 5aa44c0 | 2020-06-29 11:47:02 +0200 | [diff] [blame] | 329 | endif() |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 330 | |
Radek Krejci | 5457946 | 2019-04-30 12:47:06 +0200 | [diff] [blame] | 331 | # find PCRE2 library |
| 332 | unset(PCRE2_LIBRARY CACHE) |
Christian Hopps | dafed22 | 2021-03-22 13:02:42 -0400 | [diff] [blame] | 333 | find_package(PCRE2 10.21 REQUIRED) |
Radek Krejci | 5457946 | 2019-04-30 12:47:06 +0200 | [diff] [blame] | 334 | include_directories(${PCRE2_INCLUDE_DIRS}) |
| 335 | target_link_libraries(yang ${PCRE2_LIBRARIES}) |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 336 | |
Michal Vasko | 36f210e | 2021-05-11 13:56:46 +0200 | [diff] [blame] | 337 | # generated header list |
| 338 | foreach(h IN LISTS gen_headers) |
| 339 | list(APPEND g_headers ${PROJECT_BINARY_DIR}/${h}) |
| 340 | endforeach() |
| 341 | |
| 342 | # install all library files |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 343 | install(TARGETS yang DESTINATION ${CMAKE_INSTALL_LIBDIR}) |
Michal Vasko | 36f210e | 2021-05-11 13:56:46 +0200 | [diff] [blame] | 344 | install(FILES ${headers} ${g_headers} DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/libyang) |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 345 | |
| 346 | find_package(PkgConfig) |
| 347 | if(PKG_CONFIG_FOUND) |
| 348 | # generate and install pkg-config file |
| 349 | configure_file("libyang.pc.in" "libyang.pc" @ONLY) |
| 350 | install(FILES "${CMAKE_CURRENT_BINARY_DIR}/libyang.pc" DESTINATION "${CMAKE_INSTALL_LIBDIR}/pkgconfig") |
| 351 | # check that pkg-config includes the used path |
| 352 | execute_process(COMMAND ${PKG_CONFIG_EXECUTABLE} --variable pc_path pkg-config RESULT_VARIABLE RETURN OUTPUT_VARIABLE PC_PATH ERROR_QUIET) |
| 353 | if(RETURN EQUAL 0) |
Michal Vasko | d77e5af | 2021-06-04 08:32:29 +0200 | [diff] [blame] | 354 | string(STRIP "${PC_PATH}" PC_PATH) |
| 355 | set(PC_PATH "${PC_PATH}:$ENV{PKG_CONFIG_PATH}") |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 356 | string(REGEX MATCH "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}/pkgconfig" SUBSTR "${PC_PATH}") |
| 357 | string(LENGTH "${SUBSTR}" SUBSTR_LEN) |
| 358 | if(SUBSTR_LEN EQUAL 0) |
| 359 | 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\".") |
| 360 | endif() |
| 361 | endif() |
| 362 | endif() |
| 363 | |
Radek Krejci | cb293a3 | 2020-11-13 15:36:29 +0100 | [diff] [blame] | 364 | # tests |
Michal Vasko | 99544ca | 2021-06-29 10:45:19 +0200 | [diff] [blame] | 365 | if(ENABLE_TESTS OR ENABLE_PERF_TESTS) |
Michal Vasko | d77e5af | 2021-06-04 08:32:29 +0200 | [diff] [blame] | 366 | enable_testing() |
| 367 | add_subdirectory(tests) |
Michal Vasko | 5aa44c0 | 2020-06-29 11:47:02 +0200 | [diff] [blame] | 368 | endif() |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 369 | |
Juraj Vijtiuk | 04f7127 | 2019-08-07 06:49:00 -0400 | [diff] [blame] | 370 | if(ENABLE_FUZZ_TARGETS) |
Michal Vasko | 5aa44c0 | 2020-06-29 11:47:02 +0200 | [diff] [blame] | 371 | set(FUZZER "AFL" CACHE STRING "fuzzer type") |
| 372 | if(FUZZER STREQUAL "LibFuzzer") |
| 373 | if (NOT CMAKE_C_COMPILER_ID STREQUAL "Clang") |
| 374 | message(FATAL_ERROR "LibFuzzer works only with clang") |
| 375 | endif() |
| 376 | set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fsanitize=address,undefined -fno-omit-frame-pointer") |
| 377 | endif() |
Michal Vasko | 5aa44c0 | 2020-06-29 11:47:02 +0200 | [diff] [blame] | 378 | endif() |
Radek Krejci | e868acc | 2020-11-13 16:42:58 +0100 | [diff] [blame] | 379 | |
Michal Vasko | d77e5af | 2021-06-04 08:32:29 +0200 | [diff] [blame] | 380 | # create coverage target for generating coverage reports |
| 381 | gen_coverage("utest_.*" "utest_.*_valgrind") |
| 382 | |
Radek Krejci | e868acc | 2020-11-13 16:42:58 +0100 | [diff] [blame] | 383 | # tools - yanglint, yangre |
| 384 | add_subdirectory(tools) |
| 385 | |
| 386 | # generate doxygen documentation for libyang API |
Michal Vasko | 3b62f3b | 2021-05-25 08:53:38 +0200 | [diff] [blame] | 387 | gen_doc("${doxy_files}" ${LIBYANG_VERSION} ${LIBYANG_DESCRIPTION} ${project_logo}) |
Radek Krejci | e868acc | 2020-11-13 16:42:58 +0100 | [diff] [blame] | 388 | |
| 389 | # generate API/ABI report |
| 390 | if ("${BUILD_TYPE_UPPER}" STREQUAL "ABICHECK") |
Michal Vasko | fb822aa | 2021-05-25 17:26:13 +0200 | [diff] [blame] | 391 | lib_abi_check(yang "${headers}" ${LIBYANG_SOVERSION_FULL} b45499b88104d43979f3e2e2a1cf8eba686f8585) |
Radek Krejci | e868acc | 2020-11-13 16:42:58 +0100 | [diff] [blame] | 392 | endif() |
| 393 | |
Radek Krejci | 5348e6c | 2021-04-13 21:18:51 +0200 | [diff] [blame] | 394 | # source code format target for Makefile |
| 395 | # - add it after tests which may also update list of sources to format |
| 396 | source_format(${format_sources}) |
Radek Krejci | e868acc | 2020-11-13 16:42:58 +0100 | [diff] [blame] | 397 | |
Michal Vasko | 51b7d5c | 2021-06-21 08:28:18 +0200 | [diff] [blame] | 398 | # uninstall |
| 399 | add_custom_target(uninstall "${CMAKE_COMMAND}" -P "${CMAKE_MODULE_PATH}/uninstall.cmake") |
| 400 | |
Radek Krejci | e868acc | 2020-11-13 16:42:58 +0100 | [diff] [blame] | 401 | # clean cmake cache |
| 402 | add_custom_target(cclean |
| 403 | COMMAND make clean |
| 404 | COMMAND find . -iname '*cmake*' -not -name CMakeLists.txt -not -path './CMakeModules*' -exec rm -rf {} + |
| 405 | COMMAND rm -rf Makefile Doxyfile |
| 406 | WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}) |
| 407 | |