summaryrefslogtreecommitdiff
path: root/src/Cech_complex/test/CMakeLists.txt
blob: 2d736f276dd3cbc17b5b7702459b07ca45f88ba8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
if (NOT CGAL_WITH_EIGEN3_VERSION VERSION_LESS 5.0.1)
  include(GUDHI_boost_test)

  add_executable ( Cech_complex_test_unit test_cech_complex.cpp )
  if (TBB_FOUND)
    target_link_libraries(Cech_complex_test_unit ${TBB_LIBRARIES})
  endif()

  # Do not forget to copy test files in current binary dir
  file(COPY "${CMAKE_SOURCE_DIR}/data/points/alphacomplexdoc.off" DESTINATION ${CMAKE_CURRENT_BINARY_DIR}/)

  gudhi_add_boost_test(Cech_complex_test_unit)

endif()