From bac3da61644515f05663789b122554dc77549286 Mon Sep 17 00:00:00 2001 From: Luca Muscariello Date: Thu, 17 Jan 2019 13:47:57 +0100 Subject: This is the first commit of the hicn project Change-Id: I6f2544ad9b9f8891c88cc4bcce3cf19bd3cc863f Signed-off-by: Luca Muscariello --- hicn-light/src/CMakeLists.txt | 45 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100755 hicn-light/src/CMakeLists.txt (limited to 'hicn-light/src/CMakeLists.txt') diff --git a/hicn-light/src/CMakeLists.txt b/hicn-light/src/CMakeLists.txt new file mode 100755 index 000000000..939f38a34 --- /dev/null +++ b/hicn-light/src/CMakeLists.txt @@ -0,0 +1,45 @@ +# Define a few configuration variables that we want accessible in the software + +include(BuildMacros) +configure_file(config.h.in config.h @ONLY) + +if(NOT ANDROID_API AND NOT COMPILE_FOR_IOS) + add_subdirectory(command_line) +endif () + +add_subdirectory(config) +add_subdirectory(content_store) +add_subdirectory(core) +add_subdirectory(io) +add_subdirectory(messenger) +add_subdirectory(platforms) +add_subdirectory(processor) +add_subdirectory(socket) +add_subdirectory(strategies) +add_subdirectory(utils) + +list(APPEND HEADER_FILES + ${CMAKE_CURRENT_BINARY_DIR}/config.h +) + +set(COMPILER_DEFINITIONS "-DWITH_MAPME -DWITH_MAPME_FIXES") + +list(APPEND HICN_LIGHT_INCLUDE_DIRS + ${CMAKE_CURRENT_SOURCE_DIR}/.. +) + +if (INSTALL_HEADER) + set(TO_INSTALL_HEADERS ${HEADER_FILES}) +endif() + +build_library(${LIBHICN_LIGHT} + STATIC + SOURCES ${SOURCE_FILES} + INSTALL_HEADERS ${TO_INSTALL_HEADERS} + LINK_LIBRARIES ${LIBRARIES} + DEPENDS ${DEPENDENCIES} + COMPONENT hicn-light + INCLUDE_DIRS ${HICN_LIGHT_INCLUDE_DIRS} + INSTALL_ROOT_DIR hicn/hicn-light + DEFINITIONS ${COMPILER_DEFINITIONS} +) -- cgit 1.2.3-korg