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