From d86042141ef0a0e77935f4b48d1a627fc1ec776b Mon Sep 17 00:00:00 2001 From: Dennis Brentjes Date: Sun, 28 Aug 2016 15:19:31 +0200 Subject: Initial commit, allows for storing simpel values and boost::hana adapted structs at "key" --- CMakeLists.txt | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 CMakeLists.txt (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..0d9ab6a --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,27 @@ + +cmake_minimum_required(VERSION 3.6.1) +#this is the my current development version, it could probably be lower. + +Project(configpp) + +find_package(Boost COMPONENTS filesystem REQUIRED) + +add_library(configpp SHARED + configpp.hpp configpp.cpp +) + +target_include_directories(configpp + PUBLIC ${CMAKE_CURRENT_SOURCE_DIR} +) + +target_link_libraries(configpp + PRIVATE Boost::boost + PRIVATE Boost::filesystem +) + +target_compile_options(configpp + PUBLIC -std=c++14 +) + +enable_testing() +add_subdirectory(tests) \ No newline at end of file -- cgit v1.2.3-70-g09d2