1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
# Project setup
cmake_minimum_required(VERSION 3.5.0 FATAL_ERROR)
project(i3ipc++ CXX)
option(WITH_LOGGING "Build with log support" OFF)
option(WITH_TESTS "Build unit tests executables" OFF)
option(BUILD_EXAMPLES "Build example executables" OFF)
add_library(${PROJECT_NAME} STATIC
${PROJECT_SOURCE_DIR}/3rd/auss/include/auss.hpp
${PROJECT_SOURCE_DIR}/include/i3ipc++/ipc.hpp
${PROJECT_SOURCE_DIR}/include/i3ipc++/ipc-util.hpp
${PROJECT_SOURCE_DIR}/src/ipc.cpp
${PROJECT_SOURCE_DIR}/src/ipc-util.cpp)
target_include_directories(${PROJECT_NAME} PUBLIC ${PROJECT_SOURCE_DIR}/3rd/auss/include)
target_include_directories(${PROJECT_NAME} PUBLIC ${PROJECT_SOURCE_DIR}/include)
target_compile_options(${PROJECT_NAME} PRIVATE -std=c++11 -Wall -Wextra -Wno-unused-parameter -Wno-deprecated-declarations)
target_compile_options(${PROJECT_NAME} PRIVATE $<$<CONFIG:Debug>:-g3 -DDEBUG>)
target_compile_options(${PROJECT_NAME} PRIVATE $<$<CONFIG:Release>:-O2>)
# External library: jsoncpp-1.7.7 {{{
find_package(PkgConfig)
pkg_check_modules(JSONCPP REQUIRED jsoncpp)
target_link_libraries(${PROJECT_NAME} PUBLIC ${JSONCPP_LIBRARIES})
target_include_directories(${PROJECT_NAME} PUBLIC ${JSONCPP_INCLUDEDIR})
# }}}
# Export lists to the parent scope if there are any {{{
get_directory_property(HAS_PARENT PARENT_DIRECTORY)
if(HAS_PARENT)
set(I3IPCPP_LIBRARIES ${PROJECT_NAME} PARENT_SCOPE)
set(I3IPCPP_INCLUDE_DIRS ${PROJECT_SOURCE_DIR}/include ${JSONCPP_INCLUDEDIR} PARENT_SCOPE)
endif()
# }}}
# Build examples if the option was given {{{
if(BUILD_EXAMPLES)
add_subdirectory("${PROJECT_SOURCE_DIR}/examples")
endif()
# }}}
# Build cpp tests if the option was given {{{
if(WITH_TESTS)
find_package(CxxTest)
if(CXXTEST_FOUND)
include_directories(${CXXTEST_INCLUDE_DIR} "${PROJECT_SOURCE_DIR}/src")
add_definitions("-DTEST_SRC_ROOT=${PROJECT_SOURCE_DIR}/test")
enable_testing()
file(GLOB SRC_TEST "${PROJECT_SOURCE_DIR}/test/*.hpp")
CXXTEST_ADD_TEST(i3ipcpp_check test.cpp ${SRC_TEST})
target_link_libraries(i3ipcpp_check ${I3IPCPP_LIBRARIES})
else()
message(WARNING "CxxTest not found. Unable to run unit-tests")
endif()
endif()
# }}}
|