summaryrefslogtreecommitdiff
path: root/src/Rips_complex/example/CMakeLists.txt
blob: f8dcf94d435ff1bd62acb778f1116aefbfe3731a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
cmake_minimum_required(VERSION 2.6)
project(Rips_complex_examples)

add_executable ( ripsoffreader example_rips_complex_from_off_file.cpp )
target_link_libraries(ripsoffreader  ${Boost_SYSTEM_LIBRARY})
if (TBB_FOUND)
  target_link_libraries(ripsoffreader ${TBB_LIBRARIES})
endif()

add_executable ( ripspoints example_rips_complex_from_points.cpp )
target_link_libraries(ripspoints  ${Boost_SYSTEM_LIBRARY})
if (TBB_FOUND)
  target_link_libraries(ripspoints ${TBB_LIBRARIES})
endif()