blob: 87da8a9caa786eced72d60338e8a41900fc45590 [file] [log] [blame]
Radek Krejci2c22f122018-09-05 15:08:03 +02001cmake_minimum_required(VERSION 2.8.12)
Radek Krejcif8482c72019-04-04 10:10:47 +02002
3# force out-of-source build
4if(${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.")
6endif()
7
Radek Krejci2c22f122018-09-05 15:08:03 +02008project(libyang C)
9
Michal Vasko5aa44c02020-06-29 11:47:02 +020010# include custom Modules
11set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/CMakeModules/")
12
Radek Krejci2c22f122018-09-05 15:08:03 +020013include(GNUInstallDirs)
14include(CheckSymbolExists)
Michal Vasko5aa44c02020-06-29 11:47:02 +020015include(UseCompat)
Radek Krejcib2258822020-07-14 08:39:30 +020016include(ABICheck)
Radek Krejcia198c962020-08-16 10:32:10 +020017include(SourceFormat)
Radek Krejci88ad4be2020-10-03 12:27:05 +020018include(Doc)
19
20# set default build type if not specified by user
21if(NOT CMAKE_BUILD_TYPE)
22 set(CMAKE_BUILD_TYPE Debug)
23endif()
24# normalize build type string
25string(TOUPPER "${CMAKE_BUILD_TYPE}" BUILD_TYPE_UPPER)
26if ("${BUILD_TYPE_UPPER}" STREQUAL "RELEASE")
27 set(CMAKE_BUILD_TYPE "Release" CACHE STRING "Build Type" FORCE)
28elseif ("${BUILD_TYPE_UPPER}" STREQUAL "DEBUG")
29 set(CMAKE_BUILD_TYPE "Debug" CACHE STRING "Build Type" FORCE)
30elseif ("${BUILD_TYPE_UPPER}" STREQUAL "RELWITHDEBINFO")
31 set(CMAKE_BUILD_TYPE "RelWithDebInfo" CACHE STRING "Build Type" FORCE)
32elseif ("${BUILD_TYPE_UPPER}" STREQUAL "RELWITHDEBUG")
33 set(CMAKE_BUILD_TYPE "RelWithDebug" CACHE STRING "Build Type" FORCE)
34elseif ("${BUILD_TYPE_UPPER}" STREQUAL "ABICHECK")
35 set(CMAKE_BUILD_TYPE "ABICheck" CACHE STRING "Build Type" FORCE)
36elseif ("${BUILD_TYPE_UPPER}" STREQUAL "DOCONLY")
37 set(CMAKE_BUILD_TYPE "DocOnly" CACHE STRING "Build Type" FORCE)
38else ()
39 message(FATAL_ERROR "Unknown CMAKE_BUILD_TYPE \"${CMAKE_BUILD_TYPE}\".")
40endif ()
41
42# check the supported platform
43if(NOT UNIX)
44 message(FATAL_ERROR "Only *nix like systems are supported.")
45endif()
46
47#
48# variables
49#
Radek Krejci2c22f122018-09-05 15:08:03 +020050
51set(LIBYANG_DESCRIPTION "libyang is YANG data modelling language parser and toolkit written (and providing API) in C.")
52
53# Correct RPATH usage on OS X
54set(CMAKE_MACOSX_RPATH TRUE)
55
Radek Krejcia43d69d2019-04-04 10:34:46 +020056# set version of the project
57set(LIBYANG_MAJOR_VERSION 2)
Radek Krejci2c22f122018-09-05 15:08:03 +020058set(LIBYANG_MINOR_VERSION 0)
59set(LIBYANG_MICRO_VERSION 0)
60set(LIBYANG_VERSION ${LIBYANG_MAJOR_VERSION}.${LIBYANG_MINOR_VERSION}.${LIBYANG_MICRO_VERSION})
Radek Krejcia43d69d2019-04-04 10:34:46 +020061# set version of the library
62set(LIBYANG_MAJOR_SOVERSION 2)
63set(LIBYANG_MINOR_SOVERSION 0)
64set(LIBYANG_MICRO_SOVERSION 0)
65set(LIBYANG_SOVERSION_FULL ${LIBYANG_MAJOR_SOVERSION}.${LIBYANG_MINOR_SOVERSION}.${LIBYANG_MICRO_SOVERSION})
66set(LIBYANG_SOVERSION ${LIBYANG_MAJOR_SOVERSION})
Radek Krejci2c22f122018-09-05 15:08:03 +020067
Radek Krejci2c22f122018-09-05 15:08:03 +020068if(CMAKE_C_COMPILER_ID STREQUAL "GNU")
69 set(COMPILER_UNUSED_ATTR "UNUSED_ ## x __attribute__((__unused__))")
70 set(COMPILER_PACKED_ATTR "__attribute__((__packed__))")
71elseif(CMAKE_C_COMPILER_ID STREQUAL "Clang")
72 set(COMPILER_UNUSED_ATTR "UNUSED_ ## x __attribute__((__unused__))")
73 set(COMPILER_PACKED_ATTR "__attribute__((__packed__))")
74else()
75 set(COMPILER_UNUSED_ATTR "UNUSED_ ## x")
76 set(COMPILER_PACKED_ATTR "")
77endif()
78
Radek Krejcib2258822020-07-14 08:39:30 +020079set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${CMAKE_C_FLAGS_COVERAGE} -Wall -Wextra -Wno-missing-field-initializers -std=c99")
80set(CMAKE_C_FLAGS_DEBUG "-g3 -O0")
81set(CMAKE_C_FLAGS_ABICHECK "-g -Og")
Radek Krejci8c1054b2019-05-17 10:18:54 +020082
Radek Krejci2c22f122018-09-05 15:08:03 +020083include_directories(${PROJECT_BINARY_DIR}/src ${PROJECT_SOURCE_DIR}/src)
Michal Vaskoc5a22832020-08-20 13:21:33 +020084configure_file(${PROJECT_SOURCE_DIR}/src/version.h.in ${PROJECT_BINARY_DIR}/src/version.h @ONLY)
Radek Krejci2c22f122018-09-05 15:08:03 +020085
86#set(EXTENSIONS_PLUGINS_DIR_MACRO "${PLUGINS_DIR}/extensions")
87#set(USER_TYPES_PLUGINS_DIR_MACRO "${PLUGINS_DIR}/user_types")
88
Radek Krejci2c22f122018-09-05 15:08:03 +020089# setup bindings
90#set(GEN_LANGUAGE_BINDINGS 0 CACHE BOOL "Enable language bindings generation.")
91#set(GEN_CPP_BINDINGS 1 CACHE BOOL "Enable C++ bindings.")
92# Python bindings depend on C++ bindings because of SWIG
93#set(GEN_PYTHON_BINDINGS 1 CACHE BOOL "Enable Python bindings.")
94#set(GEN_PYTHON_VERSION "3" CACHE STRING "Python version")
95#set(GEN_JAVASCRIPT_BINDINGS 0 CACHE BOOL "Enable JavaScript bindings.")
96
Radek Krejci2c22f122018-09-05 15:08:03 +020097set(libsrc
Michal Vasko1324b6c2018-09-07 11:16:23 +020098 src/common.c
Radek Krejci2c22f122018-09-05 15:08:03 +020099 src/log.c
100 src/hash_table.c
Radek Krejciad573502018-09-07 15:26:55 +0200101 src/set.c
Michal Vasko004d3152020-06-11 19:59:22 +0200102 src/path.c
Michal Vaskod59035b2020-07-08 12:00:06 +0200103 src/diff.c
Radek Krejcid4557c62018-09-17 11:42:09 +0200104 src/context.c
Radek Krejci50f0c6b2020-06-18 16:31:48 +0200105 src/json.c
Radek Krejcie7b95092019-05-15 11:03:07 +0200106 src/tree_data.c
107 src/tree_data_free.c
108 src/tree_data_helpers.c
109 src/tree_data_hash.c
110 src/parser_xml.c
Michal Vasko90932a92020-02-12 14:33:03 +0100111 src/parser_json.c
Michal Vasko60ea6352020-06-29 13:39:39 +0200112 src/parser_lyb.c
Michal Vaskoafac7822020-10-20 14:22:26 +0200113 src/out.c
Radek Krejcie7b95092019-05-15 11:03:07 +0200114 src/printer_data.c
115 src/printer_xml.c
Radek Krejci13a57b62019-07-19 13:04:09 +0200116 src/printer_json.c
Michal Vasko60ea6352020-06-29 13:39:39 +0200117 src/printer_lyb.c
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200118 src/schema_compile.c
119 src/schema_compile_node.c
120 src/schema_compile_amend.c
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100121 src/schema_features.c
Radek Krejci3f5e3db2018-10-11 15:57:47 +0200122 src/tree_schema.c
Radek Krejci19a96102018-11-15 13:38:09 +0100123 src/tree_schema_free.c
Radek Krejci86d106e2018-10-18 09:53:19 +0200124 src/tree_schema_helpers.c
Michal Vaskoafac7822020-10-20 14:22:26 +0200125 src/in.c
Radek Krejcid91dbaf2018-09-21 15:51:39 +0200126 src/parser_yang.c
David Sedlák3b4db242018-10-19 16:11:01 +0200127 src/parser_yin.c
Radek Krejci335332a2019-09-05 13:03:35 +0200128 src/parser_stmt.c
Radek Krejcie7b95092019-05-15 11:03:07 +0200129 src/printer_schema.c
Radek Krejcid3ca0632019-04-16 16:54:54 +0200130 src/printer_yang.c
FredGand944bdc2019-11-05 21:57:07 +0800131 src/printer_yin.c
Radek Krejcie7b95092019-05-15 11:03:07 +0200132 src/plugins_types.c
Radek Krejci0935f412019-08-20 16:15:18 +0200133 src/plugins_exts.c
Radek Krejcib1646a92018-11-02 16:08:26 +0100134 src/xml.c
Michal Vaskocde73ac2019-11-14 16:10:27 +0100135 src/xpath.c
136 src/validation.c)
Radek Krejci2c22f122018-09-05 15:08:03 +0200137
Radek Krejcied5acc52019-04-25 15:57:04 +0200138set(lintsrc
139 tools/lint/main.c
140 tools/lint/main_ni.c
141 tools/lint/commands.c
142 tools/lint/completion.c
143 tools/lint/configuration.c
144 tools/lint/linenoise/linenoise.c)
Radek Krejci2c22f122018-09-05 15:08:03 +0200145
Radek Krejci5819f7c2019-05-31 14:53:29 +0200146set(resrc
147 tools/re/main.c)
Radek Krejci2c22f122018-09-05 15:08:03 +0200148
Radek Krejci2c22f122018-09-05 15:08:03 +0200149set(headers
150 src/libyang.h
Radek Krejci6caa6ab2018-10-24 10:04:48 +0200151 src/context.h
Radek Krejcica376bd2020-06-11 16:04:06 +0200152 src/dict.h
153 src/log.h
Michal Vaskoafac7822020-10-20 14:22:26 +0200154 src/in.h
Michal Vasko9eb2a372020-07-14 12:18:12 +0200155 src/parser_data.h
Radek Krejcif0e1ba52020-05-22 15:14:35 +0200156 src/parser_schema.h
Radek Krejcif0e1ba52020-05-22 15:14:35 +0200157 src/plugins_types.h
Michal Vaskoafac7822020-10-20 14:22:26 +0200158 src/out.h
Radek Krejcie7b95092019-05-15 11:03:07 +0200159 src/printer_data.h
Radek Krejcid3ca0632019-04-16 16:54:54 +0200160 src/printer_schema.h
Radek Krejcica376bd2020-06-11 16:04:06 +0200161 src/set.h
162 src/tree.h
163 src/tree_data.h
164 src/tree_schema.h)
Radek Krejci2c22f122018-09-05 15:08:03 +0200165
Radek Krejci88ad4be2020-10-03 12:27:05 +0200166#
167# options
168#
169
170if("${BUILD_TYPE_UPPER}" STREQUAL "DOCONLY")
171 libyang_doc()
172 return()
173endif()
174
175if(("${BUILD_TYPE_UPPER}" STREQUAL "DEBUG") OR ("${BUILD_TYPE_UPPER}" STREQUAL "RELWITHDEBINFO"))
176 option(ENABLE_BUILD_TESTS "Build tests" ON)
177 option(ENABLE_VALGRIND_TESTS "Build tests with valgrind" ON)
Radek Krejci7132fc52020-10-26 14:34:06 +0100178 # TODO enable when the internal docs ready
Radek Krejci685ef862020-11-05 12:55:26 +0100179 set(INTERNAL_DOCS NO)
Radek Krejci88ad4be2020-10-03 12:27:05 +0200180else()
181 option(ENABLE_BUILD_TESTS "Build tests" OFF)
182 option(ENABLE_VALGRIND_TESTS "Build tests with valgrind" OFF)
Radek Krejci685ef862020-11-05 12:55:26 +0100183 set(INTERNAL_DOCS NO)
Radek Krejci88ad4be2020-10-03 12:27:05 +0200184endif()
185option(ENABLE_COVERAGE "Build code coverage report from tests" OFF)
186option(ENABLE_FUZZ_TARGETS "Build target programs suitable for fuzzing with AFL" OFF)
187#option(ENABLE_CALLGRIND_TESTS "Build performance tests to be run with callgrind" OFF)
188
189#option(ENABLE_CACHE "Enable data caching for schemas and hash tables for data (time-efficient at the cost of increased space-complexity)" ON)
190#option(ENABLE_LATEST_REVISIONS "Enable reusing of latest revisions of schemas" ON)
191#option(ENABLE_LYD_PRIV "Add a private pointer also to struct lyd_node (data node structure), just like in struct lys_node, for arbitrary user data" OFF)
192#set(PLUGINS_DIR "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}/libyang" CACHE STRING "Directory with libyang plugins (extensions and user types)")
193
194#if(ENABLE_CACHE)
195# set(LY_ENABLED_CACHE 1)
196#endif()
197#if(ENABLE_LATEST_REVISIONS)
198# set(LY_ENABLED_LATEST_REVISIONS 1)
199#endif()
200#if(ENABLE_LYD_PRIV)
201# set(LY_ENABLED_LYD_PRIV 1)
202#endif()
203
204if(ENABLE_COVERAGE)
205 find_program(PATH_GCOV NAMES gcov)
206 if(NOT PATH_GCOV)
207 message(WARNING "'gcov' executable not found! Disabling building code coverage report.")
208 set(ENABLE_COVERAGE OFF)
209 endif()
210
211 find_program(PATH_LCOV NAMES lcov)
212 if(NOT PATH_LCOV)
213 message(WARNING "'lcov' executable not found! Disabling building code coverage report.")
214 set(ENABLE_COVERAGE OFF)
215 endif()
216
217 find_program(PATH_GENHTML NAMES genhtml)
218 if(NOT PATH_GENHTML)
219 message(WARNING "'genhtml' executable not found! Disabling building code coverage report.")
220 set(ENABLE_COVERAGE OFF)
221 endif()
222
223 if(NOT CMAKE_COMPILER_IS_GNUCC)
224 message(WARNING "Compiler is not gcc! Coverage may break the tests!")
225 endif()
226
227 if(ENABLE_COVERAGE)
228 set(CMAKE_C_FLAGS_COVERAGE "${CMAKE_C_FLAGS} --coverage -fprofile-arcs -ftest-coverage")
229 endif()
230endif()
231
232# by default build shared library
233# static build requires static libpcre2 library
234option(ENABLE_STATIC "Build static (.a) library" OFF)
235
236#
237# targets
238#
239
Michal Vasko5aa44c02020-06-29 11:47:02 +0200240# link compat
241use_compat()
242
Radek Krejci2c22f122018-09-05 15:08:03 +0200243# create static libyang library
244if(ENABLE_STATIC)
245 add_definitions(-DSTATIC)
246 set(CMAKE_EXE_LINKER_FLAGS -static)
247 set(CMAKE_FIND_LIBRARY_SUFFIXES .a)
248 set(CMAKE_EXE_LINK_DYNAMIC_C_FLAGS) # remove -Wl,-Bdynamic
249 set(CMAKE_EXE_LINK_DYNAMIC_CXX_FLAGS)
Michal Vasko5aa44c02020-06-29 11:47:02 +0200250 add_library(yang STATIC ${libsrc} $<TARGET_OBJECTS:compat>)
Radek Krejci2c22f122018-09-05 15:08:03 +0200251else()
252 set(CMAKE_POSITION_INDEPENDENT_CODE TRUE)
253 add_library(yangobj OBJECT ${libsrc})
Michal Vasko5aa44c02020-06-29 11:47:02 +0200254 add_library(yang SHARED $<TARGET_OBJECTS:yangobj> $<TARGET_OBJECTS:compat>)
Radek Krejci2c22f122018-09-05 15:08:03 +0200255
256 #link dl
257 target_link_libraries(yang ${CMAKE_DL_LIBS})
Michal Vasko90932a92020-02-12 14:33:03 +0100258
Juraj Vijtiukdd53e662019-11-15 13:35:33 +0100259 set_target_properties(yangobj PROPERTIES COMPILE_FLAGS "-fvisibility=hidden")
Michal Vasko5aa44c02020-06-29 11:47:02 +0200260endif()
Radek Krejci2c22f122018-09-05 15:08:03 +0200261
Radek Krejcia43d69d2019-04-04 10:34:46 +0200262set_target_properties(yang PROPERTIES VERSION ${LIBYANG_SOVERSION_FULL} SOVERSION ${LIBYANG_SOVERSION})
Radek Krejci2c22f122018-09-05 15:08:03 +0200263
264# link math
265target_link_libraries(yang m)
266
267# find pthreads
268set(CMAKE_THREAD_PREFER_PTHREAD TRUE)
269find_package(Threads REQUIRED)
270if(ENABLE_STATIC)
271 target_link_libraries(yang -Wl,--whole-archive ${CMAKE_THREAD_LIBS_INIT} -Wl,--no-whole-archive)
272else()
273 target_link_libraries(yang ${CMAKE_THREAD_LIBS_INIT})
Michal Vasko5aa44c02020-06-29 11:47:02 +0200274endif()
Radek Krejci2c22f122018-09-05 15:08:03 +0200275
Radek Krejci54579462019-04-30 12:47:06 +0200276# find PCRE2 library
277unset(PCRE2_LIBRARY CACHE)
Radek Krejcid9e68c42019-05-31 16:26:26 +0200278find_package(PCRE2 10.30 REQUIRED)
Radek Krejci54579462019-04-30 12:47:06 +0200279include_directories(${PCRE2_INCLUDE_DIRS})
280target_link_libraries(yang ${PCRE2_LIBRARIES})
Radek Krejci2c22f122018-09-05 15:08:03 +0200281
282install(TARGETS yang DESTINATION ${CMAKE_INSTALL_LIBDIR})
Radek Krejciaa734522020-08-20 15:33:07 +0200283install(FILES ${headers} ${PROJECT_BINARY_DIR}/src/version.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/libyang)
Radek Krejci2c22f122018-09-05 15:08:03 +0200284
285find_package(PkgConfig)
286if(PKG_CONFIG_FOUND)
287 # generate and install pkg-config file
288 configure_file("libyang.pc.in" "libyang.pc" @ONLY)
289 install(FILES "${CMAKE_CURRENT_BINARY_DIR}/libyang.pc" DESTINATION "${CMAKE_INSTALL_LIBDIR}/pkgconfig")
290 # check that pkg-config includes the used path
291 execute_process(COMMAND ${PKG_CONFIG_EXECUTABLE} --variable pc_path pkg-config RESULT_VARIABLE RETURN OUTPUT_VARIABLE PC_PATH ERROR_QUIET)
292 if(RETURN EQUAL 0)
293 string(STRIP "${PC_PATH}" PC_PATH)
294 set(PC_PATH "${PC_PATH}:$ENV{PKG_CONFIG_PATH}")
295 string(REGEX MATCH "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}/pkgconfig" SUBSTR "${PC_PATH}")
296 string(LENGTH "${SUBSTR}" SUBSTR_LEN)
297 if(SUBSTR_LEN EQUAL 0)
298 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\".")
299 endif()
300 endif()
301endif()
302
303# generate doxygen documentation for libyang API
Radek Krejci88ad4be2020-10-03 12:27:05 +0200304libyang_doc()
Radek Krejci2c22f122018-09-05 15:08:03 +0200305
Radek Krejcib2258822020-07-14 08:39:30 +0200306# generate API/ABI report
307if ("${BUILD_TYPE_UPPER}" STREQUAL "ABICHECK")
Radek Krejci88ad4be2020-10-03 12:27:05 +0200308 libyang_abicheck()
Radek Krejcib2258822020-07-14 08:39:30 +0200309endif()
310
Radek Krejcia198c962020-08-16 10:32:10 +0200311# source code format
Radek Krejci7132fc52020-10-26 14:34:06 +0100312if ("${BUILD_TYPE_UPPER}" STREQUAL "DEBUG")
313 source_format(src/* compat/*)
314endif()
Radek Krejcia198c962020-08-16 10:32:10 +0200315
Radek Krejci2c22f122018-09-05 15:08:03 +0200316# clean cmake cache
317add_custom_target(cclean
318 COMMAND make clean
319 COMMAND find . -iname '*cmake*' -not -name CMakeLists.txt -not -path './CMakeModules*' -exec rm -rf {} +
320 COMMAND rm -rf Makefile Doxyfile
321 WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR})
322
323# YANG extensions plugins
324#set(EXTENSIONS_LIST "nacm" "metadata" "yangdata")
325# if the tests are enabled, build libyang_ext_test
Radek Krejcie84f12f2018-09-18 14:11:50 +0200326if(ENABLE_BUILD_TESTS)
327 find_package(CMocka 1.0.0)
Radek Krejcib2258822020-07-14 08:39:30 +0200328# if(CMOCKA_FOUND AND CMAKE_BUILD_TYPE MATCHES Debug)
Radek Krejci2c22f122018-09-05 15:08:03 +0200329# list(APPEND EXTENSIONS_LIST "libyang_ext_test")
Radek Krejcib2258822020-07-14 08:39:30 +0200330# endif(CMOCKA_FOUND AND CMAKE_BUILD_TYPE MATCHES Debug)
Radek Krejcie84f12f2018-09-18 14:11:50 +0200331endif(ENABLE_BUILD_TESTS)
Radek Krejci2c22f122018-09-05 15:08:03 +0200332
333#if(ENABLE_STATIC)
334# set(EXTENSIONS_LIST_SIZE " 0 ")
335# set(ITEM 0)
336# foreach(EXTENSION ${EXTENSIONS_LIST})
337# add_library(${EXTENSION} STATIC "src/extensions/${EXTENSION}.c")
338# target_link_libraries(yang ${EXTENSION})
339# set(EXTENSIONS_LIST_SIZE "${EXTENSIONS_LIST_SIZE} + lyext_size(${EXTENSION})")
340# set(EXTERN_EXTENSIONS_LIST "${EXTERN_EXTENSIONS_LIST}extern struct lyext_plugin_list ${EXTENSION}[];\n")
341# set(MEMCPY_EXTENSIONS_LIST "${MEMCPY_EXTENSIONS_LIST} lyext_add(plugin, count, ${EXTENSION});\n")
342# set(STATIC_LOADED_PLUGINS "${STATIC_LOADED_PLUGINS} \"${EXTENSION}\",")
343# MATH(EXPR ITEM "${ITEM}+1")
344# endforeach()
345#else()
346# add_subdirectory(src/extensions)
347#endif(ENABLE_STATIC)
348
349# YANG user types plugins ("user_ipv4" is just an example, not installed by default)
350#set(USER_TYPE_LIST "user_date_and_time")
351#if(ENABLE_STATIC)
352# set(USER_TYPE_LIST_SIZE " 0 ")
353# foreach(USER_TYPE ${USER_TYPE_LIST})
354# add_library(${USER_TYPE} STATIC "src/user_types/${USER_TYPE}.c")
355# target_link_libraries(yang ${USER_TYPE})
356# set(USER_TYPE_LIST_SIZE "${USER_TYPE_LIST_SIZE} + lytype_size(${USER_TYPE})")
357# set(EXTERN_USER_TYPE_LIST "${EXTERN_USER_TYPE_LIST}extern struct lytype_plugin_list ${USER_TYPE}[];\n")
358# set(MEMCPY_USER_TYPE_LIST "${MEMCPY_USER_TYPE_LIST} lytype_add(plugin, count, ${USER_TYPE});\n")
359# set(STATIC_LOADED_PLUGINS "${STATIC_LOADED_PLUGINS} \"${USER_TYPE}\",")
360# MATH(EXPR ITEM "${ITEM}+1")
361# endforeach()
362# set(STATIC_LOADED_PLUGINS_COUNT "${ITEM}")
363#else()
364# add_subdirectory(src/user_types)
365#endif(ENABLE_STATIC)
366#
367#configure_file(${PROJECT_SOURCE_DIR}/src/plugin_config.h.in ${PROJECT_BINARY_DIR}/src/plugin_config.h)
368
Radek Krejcied5acc52019-04-25 15:57:04 +0200369# config file for tools
370configure_file(${PROJECT_SOURCE_DIR}/tools/config.h.in ${PROJECT_BINARY_DIR}/tools/config.h @ONLY)
371
Radek Krejci2c22f122018-09-05 15:08:03 +0200372# yanglint
Michal Vasko5aa44c02020-06-29 11:47:02 +0200373add_executable(yanglint ${lintsrc} $<TARGET_OBJECTS:compat>)
Radek Krejcied5acc52019-04-25 15:57:04 +0200374target_link_libraries(yanglint yang)
375install(TARGETS yanglint DESTINATION ${CMAKE_INSTALL_BINDIR})
376install(FILES ${PROJECT_SOURCE_DIR}/tools/lint/yanglint.1 DESTINATION ${CMAKE_INSTALL_MANDIR}/man1)
Radek Krejci535ea9f2020-05-29 16:01:05 +0200377target_include_directories(yanglint BEFORE PRIVATE ${PROJECT_BINARY_DIR})
Radek Krejci2c22f122018-09-05 15:08:03 +0200378
Radek Krejci5819f7c2019-05-31 14:53:29 +0200379# yangre
Michal Vasko5aa44c02020-06-29 11:47:02 +0200380add_executable(yangre ${resrc} $<TARGET_OBJECTS:compat>)
Radek Krejci5819f7c2019-05-31 14:53:29 +0200381target_link_libraries(yangre yang)
382install(TARGETS yangre DESTINATION ${CMAKE_INSTALL_BINDIR})
Radek Krejci535ea9f2020-05-29 16:01:05 +0200383target_include_directories(yangre BEFORE PRIVATE ${PROJECT_BINARY_DIR})
Radek Krejci2c22f122018-09-05 15:08:03 +0200384
Radek Krejcie84f12f2018-09-18 14:11:50 +0200385if(ENABLE_VALGRIND_TESTS)
386 set(ENABLE_BUILD_TESTS ON)
387endif()
Radek Krejci2c22f122018-09-05 15:08:03 +0200388
Radek Krejcie84f12f2018-09-18 14:11:50 +0200389if(ENABLE_BUILD_TESTS)
390 if(CMOCKA_FOUND)
391 enable_testing()
392 add_subdirectory(tests)
Michal Vasko5aa44c02020-06-29 11:47:02 +0200393 else()
Radek Krejcie84f12f2018-09-18 14:11:50 +0200394 message(STATUS "Disabling tests because of missing CMocka")
395 set(ENABLE_BUILD_TESTS NO)
Michal Vasko5aa44c02020-06-29 11:47:02 +0200396 endif()
397endif()
Radek Krejci2c22f122018-09-05 15:08:03 +0200398
Juraj Vijtiuk04f71272019-08-07 06:49:00 -0400399if(ENABLE_FUZZ_TARGETS)
Michal Vasko5aa44c02020-06-29 11:47:02 +0200400 set(FUZZER "AFL" CACHE STRING "fuzzer type")
401 if(FUZZER STREQUAL "LibFuzzer")
402 if (NOT CMAKE_C_COMPILER_ID STREQUAL "Clang")
403 message(FATAL_ERROR "LibFuzzer works only with clang")
404 endif()
405 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fsanitize=address,undefined -fno-omit-frame-pointer")
406 endif()
Michal Vasko5aa44c02020-06-29 11:47:02 +0200407endif()
Juraj Vijtiukf3939c92019-05-14 13:07:38 +0200408
Radek Krejci2c22f122018-09-05 15:08:03 +0200409#if(GEN_LANGUAGE_BINDINGS AND GEN_CPP_BINDINGS)
410# add_subdirectory(swig)
411#endif()
412