summaryrefslogtreecommitdiff
path: root/src/Simplex_tree/test/CMakeLists.txt
blob: a15ac04e78b3f207a0b868b4a3bd2a5b2c2c2c20 (plain)
1
2
3
4
5
6
7
8
9
10
11
cmake_minimum_required(VERSION 2.6)
project(GUDHITestSimplexTree)

# NEED TO FIND BOOST NEEDED COMPONENTS TO LINK WITH
find_package(Boost 1.45.0 COMPONENTS system unit_test_framework)
message("Boost_lib = ${Boost_LIBRARIES}")

include_directories(${Boost_INCLUDE_DIRS})
add_executable ( TestSimplexTree UnitTestSimplexTree.cpp )
target_link_libraries(TestSimplexTree ${Boost_LIBRARIES})