summaryrefslogtreecommitdiff
path: root/src/Coxeter_triangulation/test/CMakeLists.txt
blob: 3da2410fe051b89034c7861af19d56d73b8222be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
project(Coxeter_triangulation_test)

include(GUDHI_boost_test)

if (NOT EIGEN3_VERSION VERSION_LESS 3.1.0)
  add_executable ( Coxeter_triangulation_permutahedral_representation_test perm_rep_test.cpp )
  gudhi_add_boost_test(Coxeter_triangulation_permutahedral_representation_test)
  
  add_executable ( Coxeter_triangulation_freudenthal_triangulation_test freud_triang_test.cpp )
  gudhi_add_boost_test(Coxeter_triangulation_freudenthal_triangulation_test)
  
  add_executable ( Coxeter_triangulation_functions_test function_test.cpp )
  gudhi_add_boost_test(Coxeter_triangulation_functions_test)
  
  # because of random_orthogonal_matrix inclusion
  if (NOT CGAL_VERSION VERSION_LESS 4.11.0)
    add_executable ( Coxeter_triangulation_random_orthogonal_matrix_function_test random_orthogonal_matrix_function_test.cpp )
    target_link_libraries(Coxeter_triangulation_random_orthogonal_matrix_function_test ${CGAL_LIBRARY})
    gudhi_add_boost_test(Coxeter_triangulation_random_orthogonal_matrix_function_test)
  endif()
  
  add_executable ( Coxeter_triangulation_oracle_test oracle_test.cpp )
  gudhi_add_boost_test(Coxeter_triangulation_oracle_test)
  
  add_executable ( Coxeter_triangulation_manifold_tracing_test manifold_tracing_test.cpp )
  gudhi_add_boost_test(Coxeter_triangulation_manifold_tracing_test)
  
  add_executable ( Coxeter_triangulation_cell_complex_test cell_complex_test.cpp )
  if (TBB_FOUND)
     target_link_libraries(Coxeter_triangulation_cell_complex_test ${TBB_LIBRARIES})
  endif()
  gudhi_add_boost_test(Coxeter_triangulation_cell_complex_test)
endif()