summaryrefslogtreecommitdiff
path: root/src/Coxeter_triangulation/example/CMakeLists.txt
blob: 345949ae6e77e4200365f636a15b0b0af0944fa5 (plain)
1
2
3
4
5
6
7
8
9
10
cmake_minimum_required(VERSION 2.6)
project(Coxeter_triangulation_example)

add_executable ( Coxeter_triangulation_manifold_tracing_flat_torus_with_boundary_example manifold_tracing_flat_torus_with_boundary.cpp )
add_executable ( Coxeter_triangulation_manifold_tracing_custom_function_example manifold_tracing_custom_function.cpp )

if (TBB_FOUND)
   target_link_libraries(Coxeter_triangulation_manifold_tracing_flat_torus_with_boundary_example ${TBB_LIBRARIES})
   target_link_libraries(Coxeter_triangulation_manifold_tracing_custom_function_example ${TBB_LIBRARIES})
endif()