summaryrefslogtreecommitdiff
path: root/src/Cech_complex/benchmark/CMakeLists.txt
blob: bc54c0f3c57e1edf781ee8855c1bf890176fe1b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
project(Cech_complex_benchmark)

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

if(TARGET Boost::filesystem)
  add_executable(cech_complex_benchmark cech_complex_benchmark.cpp)
  target_link_libraries(cech_complex_benchmark Boost::filesystem)
  
  if (TBB_FOUND)
    target_link_libraries(cech_complex_benchmark ${TBB_LIBRARIES})
  endif()
endif()