diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..1ef4083 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,8 @@ +cmake_minimum_required (VERSION 2.6) +project (libsettable) + +find_package(Boost) + +include_directories(${Boost_INCLUDE_DIRS}) + +add_subdirectory(examples) diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt new file mode 100644 index 0000000..c5cd9fd --- /dev/null +++ b/examples/CMakeLists.txt @@ -0,0 +1,6 @@ +cmake_minimum_required (VERSION 2.6) +project (Demo) + +include_directories( .. ) + +add_executable(Demo demo.cpp)