Added files for CMake.

This commit is contained in:
Jens Luedicke
2011-01-22 01:27:45 +01:00
parent 09eda13476
commit b51894a485
2 changed files with 14 additions and 0 deletions

8
CMakeLists.txt Normal file
View File

@@ -0,0 +1,8 @@
cmake_minimum_required (VERSION 2.6)
project (libsettable)
find_package(Boost)
include_directories(${Boost_INCLUDE_DIRS})
add_subdirectory(examples)

6
examples/CMakeLists.txt Normal file
View File

@@ -0,0 +1,6 @@
cmake_minimum_required (VERSION 2.6)
project (Demo)
include_directories( .. )
add_executable(Demo demo.cpp)