summaryrefslogtreecommitdiff
path: root/src/Coxeter_triangulation/example/CMakeLists.txt
blob: cbab20244e6b4d6a0c0794e0fa4c8996e73cae96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
project(Coxeter_triangulation_example)

add_executable ( Coxeter_triangulation_manifold_tracing_flat_torus_with_boundary_example manifold_tracing_flat_torus_with_boundary.cpp )
if (TBB_FOUND)
   target_link_libraries(Coxeter_triangulation_manifold_tracing_flat_torus_with_boundary_example ${TBB_LIBRARIES})
endif()
add_test(NAME Coxeter_triangulation_manifold_tracing_flat_torus_with_boundary_example
         COMMAND $<TARGET_FILE:Coxeter_triangulation_manifold_tracing_flat_torus_with_boundary_example>)

add_executable ( Coxeter_triangulation_manifold_tracing_custom_function_example manifold_tracing_custom_function.cpp )
if (TBB_FOUND)
   target_link_libraries(Coxeter_triangulation_manifold_tracing_custom_function_example ${TBB_LIBRARIES})
endif()
add_test(NAME Coxeter_triangulation_manifold_tracing_custom_function_example
         COMMAND $<TARGET_FILE:Coxeter_triangulation_manifold_tracing_custom_function_example>)