blob: 2e801173f666c334cfe0831faa1b2193d3ed3df4 [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
Radek Krejcia5bba312020-01-09 15:41:20 +0100113 src/printer.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
Radek Krejci3f5e3db2018-10-11 15:57:47 +0200118 src/tree_schema.c
Radek Krejci19a96102018-11-15 13:38:09 +0100119 src/tree_schema_free.c
120 src/tree_schema_compile.c
Radek Krejci86d106e2018-10-18 09:53:19 +0200121 src/tree_schema_helpers.c
Radek Krejcif0e1ba52020-05-22 15:14:35 +0200122 src/parser.c
Radek Krejcid91dbaf2018-09-21 15:51:39 +0200123 src/parser_yang.c
David Sedlák3b4db242018-10-19 16:11:01 +0200124 src/parser_yin.c
Radek Krejci335332a2019-09-05 13:03:35 +0200125 src/parser_stmt.c
Radek Krejcid3ca0632019-04-16 16:54:54 +0200126 src/printer.c
Radek Krejcie7b95092019-05-15 11:03:07 +0200127 src/printer_schema.c
Radek Krejcid3ca0632019-04-16 16:54:54 +0200128 src/printer_yang.c
FredGand944bdc2019-11-05 21:57:07 +0800129 src/printer_yin.c
Radek Krejcie7b95092019-05-15 11:03:07 +0200130 src/plugins_types.c
Radek Krejci0935f412019-08-20 16:15:18 +0200131 src/plugins_exts.c
Radek Krejcib1646a92018-11-02 16:08:26 +0100132 src/xml.c
Michal Vaskocde73ac2019-11-14 16:10:27 +0100133 src/xpath.c
134 src/validation.c)
Radek Krejci2c22f122018-09-05 15:08:03 +0200135
Radek Krejcied5acc52019-04-25 15:57:04 +0200136set(lintsrc
137 tools/lint/main.c
138 tools/lint/main_ni.c
139 tools/lint/commands.c
140 tools/lint/completion.c
141 tools/lint/configuration.c
142 tools/lint/linenoise/linenoise.c)
Radek Krejci2c22f122018-09-05 15:08:03 +0200143
Radek Krejci5819f7c2019-05-31 14:53:29 +0200144set(resrc
145 tools/re/main.c)
Radek Krejci2c22f122018-09-05 15:08:03 +0200146
Radek Krejci2c22f122018-09-05 15:08:03 +0200147set(headers
148 src/libyang.h
Radek Krejci6caa6ab2018-10-24 10:04:48 +0200149 src/context.h
Radek Krejcica376bd2020-06-11 16:04:06 +0200150 src/dict.h
151 src/log.h
Radek Krejcif0e1ba52020-05-22 15:14:35 +0200152 src/parser.h
Michal Vasko9eb2a372020-07-14 12:18:12 +0200153 src/parser_data.h
Radek Krejcif0e1ba52020-05-22 15:14:35 +0200154 src/parser_schema.h
155 src/plugins_exts.h
156 src/plugins_types.h
Radek Krejcia5bba312020-01-09 15:41:20 +0100157 src/printer.h
Radek Krejcie7b95092019-05-15 11:03:07 +0200158 src/printer_data.h
Radek Krejcid3ca0632019-04-16 16:54:54 +0200159 src/printer_schema.h
Radek Krejcica376bd2020-06-11 16:04:06 +0200160 src/set.h
161 src/tree.h
162 src/tree_data.h
163 src/tree_schema.h)
Radek Krejci2c22f122018-09-05 15:08:03 +0200164
Radek Krejci88ad4be2020-10-03 12:27:05 +0200165#
166# options
167#
168
169if("${BUILD_TYPE_UPPER}" STREQUAL "DOCONLY")
170 libyang_doc()
171 return()
172endif()
173
174if(("${BUILD_TYPE_UPPER}" STREQUAL "DEBUG") OR ("${BUILD_TYPE_UPPER}" STREQUAL "RELWITHDEBINFO"))
175 option(ENABLE_BUILD_TESTS "Build tests" ON)
176 option(ENABLE_VALGRIND_TESTS "Build tests with valgrind" ON)
177 set(INTERNAL_DOCS YES)
178else()
179 option(ENABLE_BUILD_TESTS "Build tests" OFF)
180 option(ENABLE_VALGRIND_TESTS "Build tests with valgrind" OFF)
181 set(INTERNAL_DOCS NO)
182endif()
183option(ENABLE_COVERAGE "Build code coverage report from tests" OFF)
184option(ENABLE_FUZZ_TARGETS "Build target programs suitable for fuzzing with AFL" OFF)
185#option(ENABLE_CALLGRIND_TESTS "Build performance tests to be run with callgrind" OFF)
186
187#option(ENABLE_CACHE "Enable data caching for schemas and hash tables for data (time-efficient at the cost of increased space-complexity)" ON)
188#option(ENABLE_LATEST_REVISIONS "Enable reusing of latest revisions of schemas" ON)
189#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)
190#set(PLUGINS_DIR "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}/libyang" CACHE STRING "Directory with libyang plugins (extensions and user types)")
191
192#if(ENABLE_CACHE)
193# set(LY_ENABLED_CACHE 1)
194#endif()
195#if(ENABLE_LATEST_REVISIONS)
196# set(LY_ENABLED_LATEST_REVISIONS 1)
197#endif()
198#if(ENABLE_LYD_PRIV)
199# set(LY_ENABLED_LYD_PRIV 1)
200#endif()
201
202if(ENABLE_COVERAGE)
203 find_program(PATH_GCOV NAMES gcov)
204 if(NOT PATH_GCOV)
205 message(WARNING "'gcov' executable not found! Disabling building code coverage report.")
206 set(ENABLE_COVERAGE OFF)
207 endif()
208
209 find_program(PATH_LCOV NAMES lcov)
210 if(NOT PATH_LCOV)
211 message(WARNING "'lcov' executable not found! Disabling building code coverage report.")
212 set(ENABLE_COVERAGE OFF)
213 endif()
214
215 find_program(PATH_GENHTML NAMES genhtml)
216 if(NOT PATH_GENHTML)
217 message(WARNING "'genhtml' executable not found! Disabling building code coverage report.")
218 set(ENABLE_COVERAGE OFF)
219 endif()
220
221 if(NOT CMAKE_COMPILER_IS_GNUCC)
222 message(WARNING "Compiler is not gcc! Coverage may break the tests!")
223 endif()
224
225 if(ENABLE_COVERAGE)
226 set(CMAKE_C_FLAGS_COVERAGE "${CMAKE_C_FLAGS} --coverage -fprofile-arcs -ftest-coverage")
227 endif()
228endif()
229
230# by default build shared library
231# static build requires static libpcre2 library
232option(ENABLE_STATIC "Build static (.a) library" OFF)
233
234#
235# targets
236#
237
Michal Vasko5aa44c02020-06-29 11:47:02 +0200238# link compat
239use_compat()
240
Radek Krejci2c22f122018-09-05 15:08:03 +0200241# create static libyang library
242if(ENABLE_STATIC)
243 add_definitions(-DSTATIC)
244 set(CMAKE_EXE_LINKER_FLAGS -static)
245 set(CMAKE_FIND_LIBRARY_SUFFIXES .a)
246 set(CMAKE_EXE_LINK_DYNAMIC_C_FLAGS) # remove -Wl,-Bdynamic
247 set(CMAKE_EXE_LINK_DYNAMIC_CXX_FLAGS)
Michal Vasko5aa44c02020-06-29 11:47:02 +0200248 add_library(yang STATIC ${libsrc} $<TARGET_OBJECTS:compat>)
Radek Krejci2c22f122018-09-05 15:08:03 +0200249else()
250 set(CMAKE_POSITION_INDEPENDENT_CODE TRUE)
251 add_library(yangobj OBJECT ${libsrc})
Michal Vasko5aa44c02020-06-29 11:47:02 +0200252 add_library(yang SHARED $<TARGET_OBJECTS:yangobj> $<TARGET_OBJECTS:compat>)
Radek Krejci2c22f122018-09-05 15:08:03 +0200253
254 #link dl
255 target_link_libraries(yang ${CMAKE_DL_LIBS})
Michal Vasko90932a92020-02-12 14:33:03 +0100256
Juraj Vijtiukdd53e662019-11-15 13:35:33 +0100257 set_target_properties(yangobj PROPERTIES COMPILE_FLAGS "-fvisibility=hidden")
Michal Vasko5aa44c02020-06-29 11:47:02 +0200258endif()
Radek Krejci2c22f122018-09-05 15:08:03 +0200259
Radek Krejcia43d69d2019-04-04 10:34:46 +0200260set_target_properties(yang PROPERTIES VERSION ${LIBYANG_SOVERSION_FULL} SOVERSION ${LIBYANG_SOVERSION})
Radek Krejci2c22f122018-09-05 15:08:03 +0200261
262# link math
263target_link_libraries(yang m)
264
265# find pthreads
266set(CMAKE_THREAD_PREFER_PTHREAD TRUE)
267find_package(Threads REQUIRED)
268if(ENABLE_STATIC)
269 target_link_libraries(yang -Wl,--whole-archive ${CMAKE_THREAD_LIBS_INIT} -Wl,--no-whole-archive)
270else()
271 target_link_libraries(yang ${CMAKE_THREAD_LIBS_INIT})
Michal Vasko5aa44c02020-06-29 11:47:02 +0200272endif()
Radek Krejci2c22f122018-09-05 15:08:03 +0200273
Radek Krejci54579462019-04-30 12:47:06 +0200274# find PCRE2 library
275unset(PCRE2_LIBRARY CACHE)
Radek Krejcid9e68c42019-05-31 16:26:26 +0200276find_package(PCRE2 10.30 REQUIRED)
Radek Krejci54579462019-04-30 12:47:06 +0200277include_directories(${PCRE2_INCLUDE_DIRS})
278target_link_libraries(yang ${PCRE2_LIBRARIES})
Radek Krejci2c22f122018-09-05 15:08:03 +0200279
280install(TARGETS yang DESTINATION ${CMAKE_INSTALL_LIBDIR})
Radek Krejciaa734522020-08-20 15:33:07 +0200281install(FILES ${headers} ${PROJECT_BINARY_DIR}/src/version.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/libyang)
Radek Krejci2c22f122018-09-05 15:08:03 +0200282
283find_package(PkgConfig)
284if(PKG_CONFIG_FOUND)
285 # generate and install pkg-config file
286 configure_file("libyang.pc.in" "libyang.pc" @ONLY)
287 install(FILES "${CMAKE_CURRENT_BINARY_DIR}/libyang.pc" DESTINATION "${CMAKE_INSTALL_LIBDIR}/pkgconfig")
288 # check that pkg-config includes the used path
289 execute_process(COMMAND ${PKG_CONFIG_EXECUTABLE} --variable pc_path pkg-config RESULT_VARIABLE RETURN OUTPUT_VARIABLE PC_PATH ERROR_QUIET)
290 if(RETURN EQUAL 0)
291 string(STRIP "${PC_PATH}" PC_PATH)
292 set(PC_PATH "${PC_PATH}:$ENV{PKG_CONFIG_PATH}")
293 string(REGEX MATCH "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}/pkgconfig" SUBSTR "${PC_PATH}")
294 string(LENGTH "${SUBSTR}" SUBSTR_LEN)
295 if(SUBSTR_LEN EQUAL 0)
296 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\".")
297 endif()
298 endif()
299endif()
300
301# generate doxygen documentation for libyang API
Radek Krejci88ad4be2020-10-03 12:27:05 +0200302libyang_doc()
Radek Krejci2c22f122018-09-05 15:08:03 +0200303
Radek Krejcib2258822020-07-14 08:39:30 +0200304# generate API/ABI report
305if ("${BUILD_TYPE_UPPER}" STREQUAL "ABICHECK")
Radek Krejci88ad4be2020-10-03 12:27:05 +0200306 libyang_abicheck()
Radek Krejcib2258822020-07-14 08:39:30 +0200307endif()
308
Radek Krejcia198c962020-08-16 10:32:10 +0200309# source code format
310source_format(src/* compat/*)
311
Radek Krejci2c22f122018-09-05 15:08:03 +0200312# clean cmake cache
313add_custom_target(cclean
314 COMMAND make clean
315 COMMAND find . -iname '*cmake*' -not -name CMakeLists.txt -not -path './CMakeModules*' -exec rm -rf {} +
316 COMMAND rm -rf Makefile Doxyfile
317 WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR})
318
319# YANG extensions plugins
320#set(EXTENSIONS_LIST "nacm" "metadata" "yangdata")
321# if the tests are enabled, build libyang_ext_test
Radek Krejcie84f12f2018-09-18 14:11:50 +0200322if(ENABLE_BUILD_TESTS)
323 find_package(CMocka 1.0.0)
Radek Krejcib2258822020-07-14 08:39:30 +0200324# if(CMOCKA_FOUND AND CMAKE_BUILD_TYPE MATCHES Debug)
Radek Krejci2c22f122018-09-05 15:08:03 +0200325# list(APPEND EXTENSIONS_LIST "libyang_ext_test")
Radek Krejcib2258822020-07-14 08:39:30 +0200326# endif(CMOCKA_FOUND AND CMAKE_BUILD_TYPE MATCHES Debug)
Radek Krejcie84f12f2018-09-18 14:11:50 +0200327endif(ENABLE_BUILD_TESTS)
Radek Krejci2c22f122018-09-05 15:08:03 +0200328
329#if(ENABLE_STATIC)
330# set(EXTENSIONS_LIST_SIZE " 0 ")
331# set(ITEM 0)
332# foreach(EXTENSION ${EXTENSIONS_LIST})
333# add_library(${EXTENSION} STATIC "src/extensions/${EXTENSION}.c")
334# target_link_libraries(yang ${EXTENSION})
335# set(EXTENSIONS_LIST_SIZE "${EXTENSIONS_LIST_SIZE} + lyext_size(${EXTENSION})")
336# set(EXTERN_EXTENSIONS_LIST "${EXTERN_EXTENSIONS_LIST}extern struct lyext_plugin_list ${EXTENSION}[];\n")
337# set(MEMCPY_EXTENSIONS_LIST "${MEMCPY_EXTENSIONS_LIST} lyext_add(plugin, count, ${EXTENSION});\n")
338# set(STATIC_LOADED_PLUGINS "${STATIC_LOADED_PLUGINS} \"${EXTENSION}\",")
339# MATH(EXPR ITEM "${ITEM}+1")
340# endforeach()
341#else()
342# add_subdirectory(src/extensions)
343#endif(ENABLE_STATIC)
344
345# YANG user types plugins ("user_ipv4" is just an example, not installed by default)
346#set(USER_TYPE_LIST "user_date_and_time")
347#if(ENABLE_STATIC)
348# set(USER_TYPE_LIST_SIZE " 0 ")
349# foreach(USER_TYPE ${USER_TYPE_LIST})
350# add_library(${USER_TYPE} STATIC "src/user_types/${USER_TYPE}.c")
351# target_link_libraries(yang ${USER_TYPE})
352# set(USER_TYPE_LIST_SIZE "${USER_TYPE_LIST_SIZE} + lytype_size(${USER_TYPE})")
353# set(EXTERN_USER_TYPE_LIST "${EXTERN_USER_TYPE_LIST}extern struct lytype_plugin_list ${USER_TYPE}[];\n")
354# set(MEMCPY_USER_TYPE_LIST "${MEMCPY_USER_TYPE_LIST} lytype_add(plugin, count, ${USER_TYPE});\n")
355# set(STATIC_LOADED_PLUGINS "${STATIC_LOADED_PLUGINS} \"${USER_TYPE}\",")
356# MATH(EXPR ITEM "${ITEM}+1")
357# endforeach()
358# set(STATIC_LOADED_PLUGINS_COUNT "${ITEM}")
359#else()
360# add_subdirectory(src/user_types)
361#endif(ENABLE_STATIC)
362#
363#configure_file(${PROJECT_SOURCE_DIR}/src/plugin_config.h.in ${PROJECT_BINARY_DIR}/src/plugin_config.h)
364
Radek Krejcied5acc52019-04-25 15:57:04 +0200365# config file for tools
366configure_file(${PROJECT_SOURCE_DIR}/tools/config.h.in ${PROJECT_BINARY_DIR}/tools/config.h @ONLY)
367
Radek Krejci2c22f122018-09-05 15:08:03 +0200368# yanglint
Michal Vasko5aa44c02020-06-29 11:47:02 +0200369add_executable(yanglint ${lintsrc} $<TARGET_OBJECTS:compat>)
Radek Krejcied5acc52019-04-25 15:57:04 +0200370target_link_libraries(yanglint yang)
371install(TARGETS yanglint DESTINATION ${CMAKE_INSTALL_BINDIR})
372install(FILES ${PROJECT_SOURCE_DIR}/tools/lint/yanglint.1 DESTINATION ${CMAKE_INSTALL_MANDIR}/man1)
Radek Krejci535ea9f2020-05-29 16:01:05 +0200373target_include_directories(yanglint BEFORE PRIVATE ${PROJECT_BINARY_DIR})
Radek Krejci2c22f122018-09-05 15:08:03 +0200374
Radek Krejci5819f7c2019-05-31 14:53:29 +0200375# yangre
Michal Vasko5aa44c02020-06-29 11:47:02 +0200376add_executable(yangre ${resrc} $<TARGET_OBJECTS:compat>)
Radek Krejci5819f7c2019-05-31 14:53:29 +0200377target_link_libraries(yangre yang)
378install(TARGETS yangre DESTINATION ${CMAKE_INSTALL_BINDIR})
Radek Krejci535ea9f2020-05-29 16:01:05 +0200379target_include_directories(yangre BEFORE PRIVATE ${PROJECT_BINARY_DIR})
Radek Krejci2c22f122018-09-05 15:08:03 +0200380
Radek Krejcie84f12f2018-09-18 14:11:50 +0200381if(ENABLE_VALGRIND_TESTS)
382 set(ENABLE_BUILD_TESTS ON)
383endif()
Radek Krejci2c22f122018-09-05 15:08:03 +0200384
Radek Krejcie84f12f2018-09-18 14:11:50 +0200385if(ENABLE_BUILD_TESTS)
386 if(CMOCKA_FOUND)
387 enable_testing()
388 add_subdirectory(tests)
Michal Vasko5aa44c02020-06-29 11:47:02 +0200389 else()
Radek Krejcie84f12f2018-09-18 14:11:50 +0200390 message(STATUS "Disabling tests because of missing CMocka")
391 set(ENABLE_BUILD_TESTS NO)
Michal Vasko5aa44c02020-06-29 11:47:02 +0200392 endif()
393endif()
Radek Krejci2c22f122018-09-05 15:08:03 +0200394
Juraj Vijtiuk04f71272019-08-07 06:49:00 -0400395if(ENABLE_FUZZ_TARGETS)
Michal Vasko5aa44c02020-06-29 11:47:02 +0200396 set(FUZZER "AFL" CACHE STRING "fuzzer type")
397 if(FUZZER STREQUAL "LibFuzzer")
398 if (NOT CMAKE_C_COMPILER_ID STREQUAL "Clang")
399 message(FATAL_ERROR "LibFuzzer works only with clang")
400 endif()
401 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fsanitize=address,undefined -fno-omit-frame-pointer")
402 endif()
Michal Vasko5aa44c02020-06-29 11:47:02 +0200403endif()
Juraj Vijtiukf3939c92019-05-14 13:07:38 +0200404
Radek Krejci2c22f122018-09-05 15:08:03 +0200405#if(GEN_LANGUAGE_BINDINGS AND GEN_CPP_BINDINGS)
406# add_subdirectory(swig)
407#endif()
408