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