Radek Krejci | 5708fe6 | 2016-09-14 12:25:12 +0200 | [diff] [blame] | 1 | cmake_minimum_required(VERSION 2.8.9) |
Radek Krejci | e74ea8c | 2015-04-09 18:06:20 +0200 | [diff] [blame] | 2 | project(libyang C) |
| 3 | |
Jan Kundrát | 37df09e | 2016-11-04 15:42:08 +0100 | [diff] [blame] | 4 | include(GNUInstallDirs) |
| 5 | |
Michal Vasko | e5cf992 | 2015-11-11 11:06:40 +0100 | [diff] [blame] | 6 | set(LIBYANG_DESCRIPTION "libyang is YANG data modelling language parser and toolkit written (and providing API) in C.") |
| 7 | |
Radek Krejci | 8f7cf40 | 2015-08-13 08:05:48 +0200 | [diff] [blame] | 8 | # set version |
| 9 | set(LIBYANG_MAJOR_VERSION 0) |
Michal Vasko | 42a7157 | 2016-10-18 11:56:10 +0200 | [diff] [blame] | 10 | set(LIBYANG_MINOR_VERSION 11) |
Radek Krejci | 7ca8bb4 | 2017-02-01 10:23:56 +0100 | [diff] [blame] | 11 | set(LIBYANG_MICRO_VERSION 108) |
Radek Krejci | 8f7cf40 | 2015-08-13 08:05:48 +0200 | [diff] [blame] | 12 | set(LIBYANG_VERSION ${LIBYANG_MAJOR_VERSION}.${LIBYANG_MINOR_VERSION}.${LIBYANG_MICRO_VERSION}) |
| 13 | set(LIBYANG_SOVERSION ${LIBYANG_MAJOR_VERSION}.${LIBYANG_MINOR_VERSION}) |
Radek Krejci | 60cdf28 | 2016-10-10 16:22:22 +0200 | [diff] [blame] | 14 | configure_file(${PROJECT_SOURCE_DIR}/src/libyang.h.in ${PROJECT_SOURCE_DIR}/src/libyang.h) |
Radek Krejci | 8f7cf40 | 2015-08-13 08:05:48 +0200 | [diff] [blame] | 15 | |
Michal Vasko | e4e8fbd | 2015-08-24 14:54:49 +0200 | [diff] [blame] | 16 | # include custom Modules |
Radek Krejci | 977c1c8 | 2015-09-01 15:18:03 +0200 | [diff] [blame] | 17 | set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/CMakeModules/") |
Michal Vasko | e4e8fbd | 2015-08-24 14:54:49 +0200 | [diff] [blame] | 18 | |
Pavol Vican | f7cc285 | 2016-03-22 23:27:35 +0100 | [diff] [blame] | 19 | find_package(FLEX) |
Pavol Vican | cae5488 | 2016-03-30 12:24:43 +0200 | [diff] [blame] | 20 | find_package(BISON) |
Pavol Vican | 0a9716f | 2016-05-22 17:04:06 +0200 | [diff] [blame] | 21 | find_program (SED_TOOL NAMES sed) |
Pavol Vican | f7cc285 | 2016-03-22 23:27:35 +0100 | [diff] [blame] | 22 | |
Pavol Vican | cae5488 | 2016-03-30 12:24:43 +0200 | [diff] [blame] | 23 | if(NOT BISON_FOUND) |
Radek Krejci | f19243b | 2017-02-02 09:23:40 +0100 | [diff] [blame^] | 24 | message(WARNING "Missing Bison.\nYou won't be able to generate source codes from changed flex/bison files.\nCompiling libyang should still works fine.") |
Pavol Vican | cae5488 | 2016-03-30 12:24:43 +0200 | [diff] [blame] | 25 | elseif (NOT FLEX_FOUND) |
Radek Krejci | f19243b | 2017-02-02 09:23:40 +0100 | [diff] [blame^] | 26 | message(WARNING "Missing Flex.\nYou won't be able to generate source codes from changed flex/bison files.\nCompiling libyang should still works fine.") |
Pavol Vican | cae5488 | 2016-03-30 12:24:43 +0200 | [diff] [blame] | 27 | else() |
| 28 | if (BISON_VERSION VERSION_LESS 3) |
| 29 | set(EMPTYDIR "") |
| 30 | else () |
| 31 | set(EMPTYDIR "%empty") |
| 32 | endif() |
| 33 | configure_file(${PROJECT_SOURCE_DIR}/src/yang.y.in ${PROJECT_SOURCE_DIR}/src/yang.y) |
| 34 | add_custom_target(bison |
Pavol Vican | 15bf384 | 2016-04-05 22:25:00 +0200 | [diff] [blame] | 35 | WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}/src |
Pavol Vican | be9e383 | 2016-04-28 02:21:37 +0200 | [diff] [blame] | 36 | COMMAND bison -Wno-other -l -o parser_yang_bis.c --defines=parser_yang_bis.h yang.y |
Pavol Vican | 6ab09d8 | 2016-10-24 11:30:02 +0200 | [diff] [blame] | 37 | COMMAND flex -8 -L -o parser_yang_lex.c --header-file=parser_yang_lex.h yang.l |
Pavol Vican | 5c637a6 | 2016-10-03 14:47:45 +0200 | [diff] [blame] | 38 | COMMAND ${SED_TOOL} -i 's/int yychar\;/int yychar\;\\nchar *s = NULL, *tmp_s = NULL\;\\nstruct lys_include inc\;\\nstruct lys_module *trg = NULL\;\\nstruct lys_node *tpdf_parent = NULL, *data_node = NULL\;\\nvoid *actual = NULL\;\\nstruct lys_node_uses *refine_parent = NULL\;\\nint config_inherit = 0, actual_type = 0\;\\nint64_t cnt_val\;\\nint read_string = read_all\;\\nvoid *yang_type = NULL\;/' parser_yang_bis.c |
Pavol Vican | cae5488 | 2016-03-30 12:24:43 +0200 | [diff] [blame] | 39 | ) |
| 40 | endif() |
Pavol Vican | f7cc285 | 2016-03-22 23:27:35 +0100 | [diff] [blame] | 41 | |
Radek Krejci | e74ea8c | 2015-04-09 18:06:20 +0200 | [diff] [blame] | 42 | # check the supported platform |
| 43 | if(NOT UNIX) |
| 44 | message(FATAL_ERROR "Only *nix like systems are supported.") |
| 45 | endif() |
| 46 | |
Radek Krejci | e74ea8c | 2015-04-09 18:06:20 +0200 | [diff] [blame] | 47 | # set default build type if not specified by user |
| 48 | if(NOT CMAKE_BUILD_TYPE) |
| 49 | set(CMAKE_BUILD_TYPE debug) |
| 50 | endif() |
| 51 | |
Radek Krejci | 2cb3054 | 2015-04-10 08:33:57 +0200 | [diff] [blame] | 52 | set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -fvisibility=hidden") |
Radek Krejci | 3045cf3 | 2015-05-28 10:58:52 +0200 | [diff] [blame] | 53 | set(CMAKE_C_FLAGS_RELEASE "-O2 -DNDEBUG") |
Radek Krejci | f19ac67 | 2016-02-05 16:16:36 +0100 | [diff] [blame] | 54 | set(CMAKE_C_FLAGS_DEBUG "-g -O0") |
Radek Krejci | e74ea8c | 2015-04-09 18:06:20 +0200 | [diff] [blame] | 55 | |
Radek Krejci | 61cd556 | 2015-10-05 14:06:34 +0200 | [diff] [blame] | 56 | if(CMAKE_BUILD_TYPE STREQUAL debug) |
| 57 | option(ENABLE_BUILD_TESTS "Build tests" ON) |
| 58 | option(ENABLE_VALGRIND_TESTS "Build tests with valgrind" ON) |
| 59 | else() |
| 60 | option(ENABLE_BUILD_TESTS "Build tests" OFF) |
| 61 | option(ENABLE_VALGRIND_TESTS "Build tests with valgrind" OFF) |
| 62 | endif() |
Mislav Novakovic | 021b9a1 | 2015-10-01 20:50:21 +0200 | [diff] [blame] | 63 | |
Radek Krejci | 5a06554 | 2015-05-22 15:02:07 +0200 | [diff] [blame] | 64 | set(libsrc |
Radek Krejci | 9b4ca39 | 2015-04-10 08:31:27 +0200 | [diff] [blame] | 65 | src/common.c |
Radek Krejci | da04f4a | 2015-05-21 12:54:09 +0200 | [diff] [blame] | 66 | src/context.c |
Radek Krejci | 9b4ca39 | 2015-04-10 08:31:27 +0200 | [diff] [blame] | 67 | src/log.c |
Radek Krejci | ee62758 | 2015-04-20 17:39:59 +0200 | [diff] [blame] | 68 | src/dict.c |
Michal Vasko | c3d9f8c | 2015-07-31 14:37:24 +0200 | [diff] [blame] | 69 | src/resolve.c |
Radek Krejci | b1c1251 | 2015-08-11 11:22:04 +0200 | [diff] [blame] | 70 | src/validation.c |
Radek Krejci | da04f4a | 2015-05-21 12:54:09 +0200 | [diff] [blame] | 71 | src/xml.c |
Radek Krejci | b1c1251 | 2015-08-11 11:22:04 +0200 | [diff] [blame] | 72 | src/parser.c |
Radek Krejci | 998a0b8 | 2015-08-17 13:14:36 +0200 | [diff] [blame] | 73 | src/parser_yin.c |
| 74 | src/parser_xml.c |
Radek Krejci | 5449d47 | 2015-10-26 14:35:56 +0100 | [diff] [blame] | 75 | src/parser_json.c |
Pavol Vican | cae5488 | 2016-03-30 12:24:43 +0200 | [diff] [blame] | 76 | src/parser_yang_bis.c |
| 77 | src/parser_yang_lex.c |
Pavol Vican | f7cc285 | 2016-03-22 23:27:35 +0100 | [diff] [blame] | 78 | src/parser_yang.c |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 79 | src/tree_schema.c |
| 80 | src/tree_data.c |
Radek Krejci | efdd0ce | 2015-05-26 16:48:29 +0200 | [diff] [blame] | 81 | src/printer.c |
Michal Vasko | abbdaa0 | 2015-10-06 15:47:25 +0200 | [diff] [blame] | 82 | src/xpath.c |
Radek Krejci | 998a0b8 | 2015-08-17 13:14:36 +0200 | [diff] [blame] | 83 | src/printer_yang.c |
Michal Vasko | a63ca34 | 2016-02-05 14:29:19 +0100 | [diff] [blame] | 84 | src/printer_yin.c |
Michal Vasko | 9b9e4a0 | 2015-08-21 09:11:14 +0200 | [diff] [blame] | 85 | src/printer_xml.c |
Radek Krejci | 998a0b8 | 2015-08-17 13:14:36 +0200 | [diff] [blame] | 86 | src/printer_tree.c |
| 87 | src/printer_info.c |
| 88 | src/printer_json.c |
Radek Krejci | da04f4a | 2015-05-21 12:54:09 +0200 | [diff] [blame] | 89 | src/yang_types.c) |
Radek Krejci | e74ea8c | 2015-04-09 18:06:20 +0200 | [diff] [blame] | 90 | |
Radek Krejci | 5a06554 | 2015-05-22 15:02:07 +0200 | [diff] [blame] | 91 | set(lintsrc |
Michal Vasko | f3e59f1 | 2015-06-18 11:53:56 +0200 | [diff] [blame] | 92 | tools/lint/main.c |
Radek Krejci | 797590b | 2016-10-10 16:23:04 +0200 | [diff] [blame] | 93 | tools/lint/main_ni.c |
Michal Vasko | f3e59f1 | 2015-06-18 11:53:56 +0200 | [diff] [blame] | 94 | tools/lint/commands.c |
Michal Vasko | e0cb252 | 2015-07-01 10:24:53 +0200 | [diff] [blame] | 95 | tools/lint/completion.c |
Michal Vasko | 203b4e7 | 2015-06-30 15:25:15 +0200 | [diff] [blame] | 96 | linenoise/linenoise.c) |
Radek Krejci | 5a06554 | 2015-05-22 15:02:07 +0200 | [diff] [blame] | 97 | |
Michal Vasko | 9a54274 | 2016-06-23 13:04:51 +0200 | [diff] [blame] | 98 | set(yang2yinsrc |
| 99 | tools/yang2yin/main.c) |
| 100 | |
Tomas Cejka | 422c007 | 2015-07-21 18:18:25 +0200 | [diff] [blame] | 101 | set(headers |
| 102 | src/libyang.h |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 103 | src/tree_schema.h |
Radek Krejci | c6704c8 | 2015-10-06 11:12:45 +0200 | [diff] [blame] | 104 | src/tree_data.h |
Radek Krejci | 41912fe | 2015-10-22 10:22:12 +0200 | [diff] [blame] | 105 | src/xml.h |
| 106 | src/dict.h) |
Tomas Cejka | 422c007 | 2015-07-21 18:18:25 +0200 | [diff] [blame] | 107 | |
Abhi Keshav | 7afa081 | 2016-10-25 14:52:51 -0700 | [diff] [blame] | 108 | # create static libyang library |
| 109 | if(STATIC) |
| 110 | add_library(yang_static STATIC ${libsrc}) |
| 111 | set_target_properties(yang_static PROPERTIES OUTPUT_NAME yang) |
| 112 | target_link_libraries(yang_static m) |
| 113 | target_link_libraries(yang_static ${CMAKE_THREAD_LIBS_INIT}) |
| 114 | target_link_libraries(yang_static ${PCRE_LIBRARIES}) |
Radek Krejci | 4c79e70 | 2016-11-06 13:00:20 +0100 | [diff] [blame] | 115 | install(TARGETS yang_static DESTINATION ${CMAKE_INSTALL_LIBDIR}) |
Abhi Keshav | 7afa081 | 2016-10-25 14:52:51 -0700 | [diff] [blame] | 116 | endif(STATIC) |
| 117 | |
Radek Krejci | 5708fe6 | 2016-09-14 12:25:12 +0200 | [diff] [blame] | 118 | set(CMAKE_POSITION_INDEPENDENT_CODE TRUE) |
| 119 | add_library(yangobj OBJECT ${libsrc}) |
| 120 | add_library(yang SHARED $<TARGET_OBJECTS:yangobj>) |
Radek Krejci | 8f7cf40 | 2015-08-13 08:05:48 +0200 | [diff] [blame] | 121 | set_target_properties(yang PROPERTIES VERSION ${LIBYANG_VERSION} SOVERSION ${LIBYANG_SOVERSION}) |
Michal Vasko | e4e8fbd | 2015-08-24 14:54:49 +0200 | [diff] [blame] | 122 | |
Radek Krejci | 89658b3 | 2016-02-08 11:14:46 +0100 | [diff] [blame] | 123 | # link math |
| 124 | target_link_libraries(yang m) |
| 125 | |
Radek Krejci | 7d9f46a | 2016-01-29 13:53:18 +0100 | [diff] [blame] | 126 | # find pthreads |
| 127 | set(CMAKE_THREAD_PREFER_PTHREAD TRUE) |
| 128 | find_package(Threads REQUIRED) |
| 129 | target_link_libraries(yang ${CMAKE_THREAD_LIBS_INIT}) |
| 130 | |
Michal Vasko | e4e8fbd | 2015-08-24 14:54:49 +0200 | [diff] [blame] | 131 | # find PCRE library |
| 132 | find_package(PCRE REQUIRED) |
| 133 | include_directories(${PCRE_INCLUDE_DIRS}) |
Radek Krejci | 1d949ec | 2015-10-02 13:35:05 +0200 | [diff] [blame] | 134 | target_link_libraries(yang ${PCRE_LIBRARIES}) |
Radek Krejci | e74ea8c | 2015-04-09 18:06:20 +0200 | [diff] [blame] | 135 | |
Jan Kundrát | bffd9e4 | 2016-11-04 16:33:49 +0100 | [diff] [blame] | 136 | install(TARGETS yang DESTINATION ${CMAKE_INSTALL_LIBDIR}) |
| 137 | install(FILES ${headers} DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/libyang) |
Radek Krejci | e74ea8c | 2015-04-09 18:06:20 +0200 | [diff] [blame] | 138 | |
Michal Vasko | e5cf992 | 2015-11-11 11:06:40 +0100 | [diff] [blame] | 139 | find_package(PkgConfig) |
| 140 | if(PKG_CONFIG_FOUND) |
| 141 | # generate and install pkg-config file |
| 142 | configure_file("libyang.pc.in" "libyang.pc" @ONLY) |
Jan Kundrát | bffd9e4 | 2016-11-04 16:33:49 +0100 | [diff] [blame] | 143 | install(FILES "${CMAKE_CURRENT_BINARY_DIR}/libyang.pc" DESTINATION "${CMAKE_INSTALL_LIBDIR}/pkgconfig") |
Michal Vasko | 98ae1e1 | 2015-12-15 11:11:28 +0100 | [diff] [blame] | 144 | # check that pkg-config includes the used path |
| 145 | execute_process(COMMAND ${PKG_CONFIG_EXECUTABLE} --variable pc_path pkg-config RESULT_VARIABLE RETURN OUTPUT_VARIABLE PC_PATH ERROR_QUIET) |
| 146 | if(RETURN EQUAL 0) |
Jan Kundrát | bffd9e4 | 2016-11-04 16:33:49 +0100 | [diff] [blame] | 147 | string(REGEX MATCH "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}/pkgconfig" SUBSTR "${PC_PATH}") |
Michal Vasko | 33c001c | 2016-02-11 09:01:52 +0100 | [diff] [blame] | 148 | string(LENGTH "${SUBSTR}" SUBSTR_LEN) |
Michal Vasko | b8d90a3 | 2016-02-09 13:59:42 +0100 | [diff] [blame] | 149 | if(SUBSTR_LEN EQUAL 0) |
Jan Kundrát | bffd9e4 | 2016-11-04 16:33:49 +0100 | [diff] [blame] | 150 | 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\".") |
Michal Vasko | 98ae1e1 | 2015-12-15 11:11:28 +0100 | [diff] [blame] | 151 | endif() |
| 152 | endif() |
Michal Vasko | e5cf992 | 2015-11-11 11:06:40 +0100 | [diff] [blame] | 153 | endif() |
| 154 | |
Radek Krejci | e74ea8c | 2015-04-09 18:06:20 +0200 | [diff] [blame] | 155 | # generate doxygen documentation for libyang API |
Radek Krejci | e262609 | 2015-10-08 11:25:44 +0200 | [diff] [blame] | 156 | find_package(Doxygen) |
| 157 | if(DOXYGEN_FOUND) |
| 158 | set(DOXYGEN_SKIP_DOT TRUE) |
| 159 | add_custom_target(doc |
| 160 | COMMAND ${DOXYGEN_EXECUTABLE} ${CMAKE_BINARY_DIR}/Doxyfile |
| 161 | WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}) |
| 162 | configure_file(Doxyfile.in Doxyfile) |
| 163 | endif() |
Radek Krejci | e74ea8c | 2015-04-09 18:06:20 +0200 | [diff] [blame] | 164 | |
| 165 | # clean cmake cache |
| 166 | add_custom_target(cclean |
Radek Krejci | 25155ac | 2015-10-08 11:26:20 +0200 | [diff] [blame] | 167 | COMMAND make clean |
| 168 | COMMAND find . -iname '*cmake*' -not -name CMakeLists.txt -not -path './CMakeModules*' -exec rm -rf {} + |
| 169 | COMMAND rm -rf Makefile Doxyfile |
| 170 | WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}) |
Radek Krejci | 2cb3054 | 2015-04-10 08:33:57 +0200 | [diff] [blame] | 171 | |
Radek Krejci | 5a06554 | 2015-05-22 15:02:07 +0200 | [diff] [blame] | 172 | add_executable(yanglint ${lintsrc}) |
Radek Krejci | 1d949ec | 2015-10-02 13:35:05 +0200 | [diff] [blame] | 173 | target_link_libraries(yanglint yang) |
Jan Kundrát | bffd9e4 | 2016-11-04 16:33:49 +0100 | [diff] [blame] | 174 | install(TARGETS yanglint DESTINATION ${CMAKE_INSTALL_BINDIR}) |
| 175 | install(FILES ${PROJECT_SOURCE_DIR}/tools/lint/yanglint.1 DESTINATION ${CMAKE_INSTALL_MANDIR}/man1) |
Radek Krejci | 5a06554 | 2015-05-22 15:02:07 +0200 | [diff] [blame] | 176 | |
Michal Vasko | 9a54274 | 2016-06-23 13:04:51 +0200 | [diff] [blame] | 177 | add_executable(yang2yin ${yang2yinsrc}) |
| 178 | |
Mislav Novakovic | 021b9a1 | 2015-10-01 20:50:21 +0200 | [diff] [blame] | 179 | if(ENABLE_VALGRIND_TESTS) |
| 180 | set(ENABLE_BUILD_TESTS ON) |
| 181 | endif() |
| 182 | |
| 183 | if(ENABLE_BUILD_TESTS) |
Radek Krejci | e02ce0a | 2015-11-04 14:14:20 +0100 | [diff] [blame] | 184 | find_package(CMocka 1.0.0) |
| 185 | if(CMOCKA_FOUND) |
| 186 | enable_testing() |
| 187 | add_subdirectory(tests) |
| 188 | endif(CMOCKA_FOUND) |
| 189 | endif(ENABLE_BUILD_TESTS) |
Mislav Novakovic | a827b5f | 2016-02-29 11:47:22 +0100 | [diff] [blame] | 190 | |
| 191 | if(JAVASCRIPT_BINDING) |
| 192 | include(swig/javascript/CMakeLists.txt) |
| 193 | endif() |