Ticket #12861: CMakeLists.txt

File CMakeLists.txt, 301 bytes (added by michael.moessner@…, 6 years ago)

CMake file to compile the code

Line 
1
2project(test_tree)
3
4set(CMAKE_CXX_FLAGS "-std=c++11 -O0 -ggdb")
5#set(CMAKE_CXX_FLAGS "-std=c++11 -O3")
6
7
8find_package(Boost COMPONENTS serialization REQUIRED)
9
10include_directories(${Boost_INCLUDE_DIR})
11
12add_executable(test_tree test_tree.cpp)
13
14target_link_libraries(test_tree
15 ${Boost_LIBRARIES})
16
17