blob: 88d05a8401827aface39d7610e65a7da3e48048c [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
Radek Krejci3f5e3db2018-10-11 15:57:47 +0200121 src/tree_schema.c
Radek Krejci19a96102018-11-15 13:38:09 +0100122 src/tree_schema_free.c
Radek Krejci86d106e2018-10-18 09:53:19 +0200123 src/tree_schema_helpers.c
Michal Vaskoafac7822020-10-20 14:22:26 +0200124 src/in.c
Radek Krejcid91dbaf2018-09-21 15:51:39 +0200125 src/parser_yang.c
David Sedlák3b4db242018-10-19 16:11:01 +0200126 src/parser_yin.c
Radek Krejci335332a2019-09-05 13:03:35 +0200127 src/parser_stmt.c
Radek Krejcie7b95092019-05-15 11:03:07 +0200128 src/printer_schema.c
Radek Krejcid3ca0632019-04-16 16:54:54 +0200129 src/printer_yang.c
FredGand944bdc2019-11-05 21:57:07 +0800130 src/printer_yin.c
Radek Krejcie7b95092019-05-15 11:03:07 +0200131 src/plugins_types.c
Radek Krejci0935f412019-08-20 16:15:18 +0200132 src/plugins_exts.c
Radek Krejcib1646a92018-11-02 16:08:26 +0100133 src/xml.c
Michal Vaskocde73ac2019-11-14 16:10:27 +0100134 src/xpath.c
135 src/validation.c)
Radek Krejci2c22f122018-09-05 15:08:03 +0200136
Radek Krejcied5acc52019-04-25 15:57:04 +0200137set(lintsrc
138 tools/lint/main.c
139 tools/lint/main_ni.c
140 tools/lint/commands.c
141 tools/lint/completion.c
142 tools/lint/configuration.c
143 tools/lint/linenoise/linenoise.c)
Radek Krejci2c22f122018-09-05 15:08:03 +0200144
Radek Krejci5819f7c2019-05-31 14:53:29 +0200145set(resrc
146 tools/re/main.c)
Radek Krejci2c22f122018-09-05 15:08:03 +0200147
Radek Krejci2c22f122018-09-05 15:08:03 +0200148set(headers
149 src/libyang.h
Radek Krejci6caa6ab2018-10-24 10:04:48 +0200150 src/context.h
Radek Krejcica376bd2020-06-11 16:04:06 +0200151 src/dict.h
152 src/log.h
Michal Vaskoafac7822020-10-20 14:22:26 +0200153 src/in.h
Michal Vasko9eb2a372020-07-14 12:18:12 +0200154 src/parser_data.h
Radek Krejcif0e1ba52020-05-22 15:14:35 +0200155 src/parser_schema.h
156 src/plugins_exts.h
157 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 Krejci8678fa42020-08-18 16:07:28 +0200178 set(INTERNAL_DOCS NO) # TODO enable when the internal docs ready
Radek Krejci88ad4be2020-10-03 12:27:05 +0200179else()
180 option(ENABLE_BUILD_TESTS "Build tests" OFF)
181 option(ENABLE_VALGRIND_TESTS "Build tests with valgrind" OFF)
182 set(INTERNAL_DOCS NO)
183endif()
184option(ENABLE_COVERAGE "Build code coverage report from tests" OFF)
185option(ENABLE_FUZZ_TARGETS "Build target programs suitable for fuzzing with AFL" OFF)
186#option(ENABLE_CALLGRIND_TESTS "Build performance tests to be run with callgrind" OFF)
187
188#option(ENABLE_CACHE "Enable data caching for schemas and hash tables for data (time-efficient at the cost of increased space-complexity)" ON)
189#option(ENABLE_LATEST_REVISIONS "Enable reusing of latest revisions of schemas" ON)
190#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)
191#set(PLUGINS_DIR "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}/libyang" CACHE STRING "Directory with libyang plugins (extensions and user types)")
192
193#if(ENABLE_CACHE)
194# set(LY_ENABLED_CACHE 1)
195#endif()
196#if(ENABLE_LATEST_REVISIONS)
197# set(LY_ENABLED_LATEST_REVISIONS 1)
198#endif()
199#if(ENABLE_LYD_PRIV)
200# set(LY_ENABLED_LYD_PRIV 1)
201#endif()
202
203if(ENABLE_COVERAGE)
204 find_program(PATH_GCOV NAMES gcov)
205 if(NOT PATH_GCOV)
206 message(WARNING "'gcov' executable not found! Disabling building code coverage report.")
207 set(ENABLE_COVERAGE OFF)
208 endif()
209
210 find_program(PATH_LCOV NAMES lcov)
211 if(NOT PATH_LCOV)
212 message(WARNING "'lcov' executable not found! Disabling building code coverage report.")
213 set(ENABLE_COVERAGE OFF)
214 endif()
215
216 find_program(PATH_GENHTML NAMES genhtml)
217 if(NOT PATH_GENHTML)
218 message(WARNING "'genhtml' executable not found! Disabling building code coverage report.")
219 set(ENABLE_COVERAGE OFF)
220 endif()
221
222 if(NOT CMAKE_COMPILER_IS_GNUCC)
223 message(WARNING "Compiler is not gcc! Coverage may break the tests!")
224 endif()
225
226 if(ENABLE_COVERAGE)
227 set(CMAKE_C_FLAGS_COVERAGE "${CMAKE_C_FLAGS} --coverage -fprofile-arcs -ftest-coverage")
228 endif()
229endif()
230
231# by default build shared library
232# static build requires static libpcre2 library
233option(ENABLE_STATIC "Build static (.a) library" OFF)
234
235#
236# targets
237#
238
Michal Vasko5aa44c02020-06-29 11:47:02 +0200239# link compat
240use_compat()
241
Radek Krejci2c22f122018-09-05 15:08:03 +0200242# create static libyang library
243if(ENABLE_STATIC)
244 add_definitions(-DSTATIC)
245 set(CMAKE_EXE_LINKER_FLAGS -static)
246 set(CMAKE_FIND_LIBRARY_SUFFIXES .a)
247 set(CMAKE_EXE_LINK_DYNAMIC_C_FLAGS) # remove -Wl,-Bdynamic
248 set(CMAKE_EXE_LINK_DYNAMIC_CXX_FLAGS)
Michal Vasko5aa44c02020-06-29 11:47:02 +0200249 add_library(yang STATIC ${libsrc} $<TARGET_OBJECTS:compat>)
Radek Krejci2c22f122018-09-05 15:08:03 +0200250else()
251 set(CMAKE_POSITION_INDEPENDENT_CODE TRUE)
252 add_library(yangobj OBJECT ${libsrc})
Michal Vasko5aa44c02020-06-29 11:47:02 +0200253 add_library(yang SHARED $<TARGET_OBJECTS:yangobj> $<TARGET_OBJECTS:compat>)
Radek Krejci2c22f122018-09-05 15:08:03 +0200254
255 #link dl
256 target_link_libraries(yang ${CMAKE_DL_LIBS})
Michal Vasko90932a92020-02-12 14:33:03 +0100257
Juraj Vijtiukdd53e662019-11-15 13:35:33 +0100258 set_target_properties(yangobj PROPERTIES COMPILE_FLAGS "-fvisibility=hidden")
Michal Vasko5aa44c02020-06-29 11:47:02 +0200259endif()
Radek Krejci2c22f122018-09-05 15:08:03 +0200260
Radek Krejcia43d69d2019-04-04 10:34:46 +0200261set_target_properties(yang PROPERTIES VERSION ${LIBYANG_SOVERSION_FULL} SOVERSION ${LIBYANG_SOVERSION})
Radek Krejci2c22f122018-09-05 15:08:03 +0200262
263# link math
264target_link_libraries(yang m)
265
266# find pthreads
267set(CMAKE_THREAD_PREFER_PTHREAD TRUE)
268find_package(Threads REQUIRED)
269if(ENABLE_STATIC)
270 target_link_libraries(yang -Wl,--whole-archive ${CMAKE_THREAD_LIBS_INIT} -Wl,--no-whole-archive)
271else()
272 target_link_libraries(yang ${CMAKE_THREAD_LIBS_INIT})
Michal Vasko5aa44c02020-06-29 11:47:02 +0200273endif()
Radek Krejci2c22f122018-09-05 15:08:03 +0200274
Radek Krejci54579462019-04-30 12:47:06 +0200275# find PCRE2 library
276unset(PCRE2_LIBRARY CACHE)
Radek Krejcid9e68c42019-05-31 16:26:26 +0200277find_package(PCRE2 10.30 REQUIRED)
Radek Krejci54579462019-04-30 12:47:06 +0200278include_directories(${PCRE2_INCLUDE_DIRS})
279target_link_libraries(yang ${PCRE2_LIBRARIES})
Radek Krejci2c22f122018-09-05 15:08:03 +0200280
281install(TARGETS yang DESTINATION ${CMAKE_INSTALL_LIBDIR})
Radek Krejciaa734522020-08-20 15:33:07 +0200282install(FILES ${headers} ${PROJECT_BINARY_DIR}/src/version.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/libyang)
Radek Krejci2c22f122018-09-05 15:08:03 +0200283
284find_package(PkgConfig)
285if(PKG_CONFIG_FOUND)
286 # generate and install pkg-config file
287 configure_file("libyang.pc.in" "libyang.pc" @ONLY)
288 install(FILES "${CMAKE_CURRENT_BINARY_DIR}/libyang.pc" DESTINATION "${CMAKE_INSTALL_LIBDIR}/pkgconfig")
289 # check that pkg-config includes the used path
290 execute_process(COMMAND ${PKG_CONFIG_EXECUTABLE} --variable pc_path pkg-config RESULT_VARIABLE RETURN OUTPUT_VARIABLE PC_PATH ERROR_QUIET)
291 if(RETURN EQUAL 0)
292 string(STRIP "${PC_PATH}" PC_PATH)
293 set(PC_PATH "${PC_PATH}:$ENV{PKG_CONFIG_PATH}")
294 string(REGEX MATCH "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}/pkgconfig" SUBSTR "${PC_PATH}")
295 string(LENGTH "${SUBSTR}" SUBSTR_LEN)
296 if(SUBSTR_LEN EQUAL 0)
297 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\".")
298 endif()
299 endif()
300endif()
301
302# generate doxygen documentation for libyang API
Radek Krejci88ad4be2020-10-03 12:27:05 +0200303libyang_doc()
Radek Krejci2c22f122018-09-05 15:08:03 +0200304
Radek Krejcib2258822020-07-14 08:39:30 +0200305# generate API/ABI report
306if ("${BUILD_TYPE_UPPER}" STREQUAL "ABICHECK")
Radek Krejci88ad4be2020-10-03 12:27:05 +0200307 libyang_abicheck()
Radek Krejcib2258822020-07-14 08:39:30 +0200308endif()
309
Radek Krejcia198c962020-08-16 10:32:10 +0200310# source code format
311source_format(src/* compat/*)
312
Radek Krejci2c22f122018-09-05 15:08:03 +0200313# clean cmake cache
314add_custom_target(cclean
315 COMMAND make clean
316 COMMAND find . -iname '*cmake*' -not -name CMakeLists.txt -not -path './CMakeModules*' -exec rm -rf {} +
317 COMMAND rm -rf Makefile Doxyfile
318 WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR})
319
320# YANG extensions plugins
321#set(EXTENSIONS_LIST "nacm" "metadata" "yangdata")
322# if the tests are enabled, build libyang_ext_test
Radek Krejcie84f12f2018-09-18 14:11:50 +0200323if(ENABLE_BUILD_TESTS)
324 find_package(CMocka 1.0.0)
Radek Krejcib2258822020-07-14 08:39:30 +0200325# if(CMOCKA_FOUND AND CMAKE_BUILD_TYPE MATCHES Debug)
Radek Krejci2c22f122018-09-05 15:08:03 +0200326# list(APPEND EXTENSIONS_LIST "libyang_ext_test")
Radek Krejcib2258822020-07-14 08:39:30 +0200327# endif(CMOCKA_FOUND AND CMAKE_BUILD_TYPE MATCHES Debug)
Radek Krejcie84f12f2018-09-18 14:11:50 +0200328endif(ENABLE_BUILD_TESTS)
Radek Krejci2c22f122018-09-05 15:08:03 +0200329
330#if(ENABLE_STATIC)
331# set(EXTENSIONS_LIST_SIZE " 0 ")
332# set(ITEM 0)
333# foreach(EXTENSION ${EXTENSIONS_LIST})
334# add_library(${EXTENSION} STATIC "src/extensions/${EXTENSION}.c")
335# target_link_libraries(yang ${EXTENSION})
336# set(EXTENSIONS_LIST_SIZE "${EXTENSIONS_LIST_SIZE} + lyext_size(${EXTENSION})")
337# set(EXTERN_EXTENSIONS_LIST "${EXTERN_EXTENSIONS_LIST}extern struct lyext_plugin_list ${EXTENSION}[];\n")
338# set(MEMCPY_EXTENSIONS_LIST "${MEMCPY_EXTENSIONS_LIST} lyext_add(plugin, count, ${EXTENSION});\n")
339# set(STATIC_LOADED_PLUGINS "${STATIC_LOADED_PLUGINS} \"${EXTENSION}\",")
340# MATH(EXPR ITEM "${ITEM}+1")
341# endforeach()
342#else()
343# add_subdirectory(src/extensions)
344#endif(ENABLE_STATIC)
345
346# YANG user types plugins ("user_ipv4" is just an example, not installed by default)
347#set(USER_TYPE_LIST "user_date_and_time")
348#if(ENABLE_STATIC)
349# set(USER_TYPE_LIST_SIZE " 0 ")
350# foreach(USER_TYPE ${USER_TYPE_LIST})
351# add_library(${USER_TYPE} STATIC "src/user_types/${USER_TYPE}.c")
352# target_link_libraries(yang ${USER_TYPE})
353# set(USER_TYPE_LIST_SIZE "${USER_TYPE_LIST_SIZE} + lytype_size(${USER_TYPE})")
354# set(EXTERN_USER_TYPE_LIST "${EXTERN_USER_TYPE_LIST}extern struct lytype_plugin_list ${USER_TYPE}[];\n")
355# set(MEMCPY_USER_TYPE_LIST "${MEMCPY_USER_TYPE_LIST} lytype_add(plugin, count, ${USER_TYPE});\n")
356# set(STATIC_LOADED_PLUGINS "${STATIC_LOADED_PLUGINS} \"${USER_TYPE}\",")
357# MATH(EXPR ITEM "${ITEM}+1")
358# endforeach()
359# set(STATIC_LOADED_PLUGINS_COUNT "${ITEM}")
360#else()
361# add_subdirectory(src/user_types)
362#endif(ENABLE_STATIC)
363#
364#configure_file(${PROJECT_SOURCE_DIR}/src/plugin_config.h.in ${PROJECT_BINARY_DIR}/src/plugin_config.h)
365
Radek Krejcied5acc52019-04-25 15:57:04 +0200366# config file for tools
367configure_file(${PROJECT_SOURCE_DIR}/tools/config.h.in ${PROJECT_BINARY_DIR}/tools/config.h @ONLY)
368
Radek Krejci2c22f122018-09-05 15:08:03 +0200369# yanglint
Michal Vasko5aa44c02020-06-29 11:47:02 +0200370add_executable(yanglint ${lintsrc} $<TARGET_OBJECTS:compat>)
Radek Krejcied5acc52019-04-25 15:57:04 +0200371target_link_libraries(yanglint yang)
372install(TARGETS yanglint DESTINATION ${CMAKE_INSTALL_BINDIR})
373install(FILES ${PROJECT_SOURCE_DIR}/tools/lint/yanglint.1 DESTINATION ${CMAKE_INSTALL_MANDIR}/man1)
Radek Krejci535ea9f2020-05-29 16:01:05 +0200374target_include_directories(yanglint BEFORE PRIVATE ${PROJECT_BINARY_DIR})
Radek Krejci2c22f122018-09-05 15:08:03 +0200375
Radek Krejci5819f7c2019-05-31 14:53:29 +0200376# yangre
Michal Vasko5aa44c02020-06-29 11:47:02 +0200377add_executable(yangre ${resrc} $<TARGET_OBJECTS:compat>)
Radek Krejci5819f7c2019-05-31 14:53:29 +0200378target_link_libraries(yangre yang)
379install(TARGETS yangre DESTINATION ${CMAKE_INSTALL_BINDIR})
Radek Krejci535ea9f2020-05-29 16:01:05 +0200380target_include_directories(yangre BEFORE PRIVATE ${PROJECT_BINARY_DIR})
Radek Krejci2c22f122018-09-05 15:08:03 +0200381
Radek Krejcie84f12f2018-09-18 14:11:50 +0200382if(ENABLE_VALGRIND_TESTS)
383 set(ENABLE_BUILD_TESTS ON)
384endif()
Radek Krejci2c22f122018-09-05 15:08:03 +0200385
Radek Krejcie84f12f2018-09-18 14:11:50 +0200386if(ENABLE_BUILD_TESTS)
387 if(CMOCKA_FOUND)
388 enable_testing()
389 add_subdirectory(tests)
Michal Vasko5aa44c02020-06-29 11:47:02 +0200390 else()
Radek Krejcie84f12f2018-09-18 14:11:50 +0200391 message(STATUS "Disabling tests because of missing CMocka")
392 set(ENABLE_BUILD_TESTS NO)
Michal Vasko5aa44c02020-06-29 11:47:02 +0200393 endif()
394endif()
Radek Krejci2c22f122018-09-05 15:08:03 +0200395
Juraj Vijtiuk04f71272019-08-07 06:49:00 -0400396if(ENABLE_FUZZ_TARGETS)
Michal Vasko5aa44c02020-06-29 11:47:02 +0200397 set(FUZZER "AFL" CACHE STRING "fuzzer type")
398 if(FUZZER STREQUAL "LibFuzzer")
399 if (NOT CMAKE_C_COMPILER_ID STREQUAL "Clang")
400 message(FATAL_ERROR "LibFuzzer works only with clang")
401 endif()
402 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fsanitize=address,undefined -fno-omit-frame-pointer")
403 endif()
Michal Vasko5aa44c02020-06-29 11:47:02 +0200404endif()
Juraj Vijtiukf3939c92019-05-14 13:07:38 +0200405
Radek Krejci2c22f122018-09-05 15:08:03 +0200406#if(GEN_LANGUAGE_BINDINGS AND GEN_CPP_BINDINGS)
407# add_subdirectory(swig)
408#endif()
409