From 56618be4e28a6a149aaa0fef944d8fde719f7844 Mon Sep 17 00:00:00 2001 From: vrouvrea Date: Fri, 16 Feb 2018 08:04:07 +0000 Subject: Add Cech complex. Do not compile yet. git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/cechcomplex_vincent@3250 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: bef87ed8038444685b964175ea65860300917380 --- src/Cech_complex/example/CMakeLists.txt | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/Cech_complex/example/CMakeLists.txt (limited to 'src/Cech_complex/example/CMakeLists.txt') diff --git a/src/Cech_complex/example/CMakeLists.txt b/src/Cech_complex/example/CMakeLists.txt new file mode 100644 index 00000000..8097871f --- /dev/null +++ b/src/Cech_complex/example/CMakeLists.txt @@ -0,0 +1,14 @@ +cmake_minimum_required(VERSION 2.6) +project(Cech_complex_examples) + +add_executable ( Cech_complex_example_step_by_step cech_complex_step_by_step.cpp ) +target_link_libraries(Cech_complex_example_step_by_step ${Boost_PROGRAM_OPTIONS_LIBRARY}) +if (TBB_FOUND) + target_link_libraries(Cech_complex_example_step_by_step ${TBB_LIBRARIES}) +endif() + +add_executable ( Cech_complex_example_one_skeleton_from_points example_one_skeleton_cech_from_points.cpp) +if (TBB_FOUND) + target_link_libraries(Cech_complex_example_one_skeleton_from_points ${TBB_LIBRARIES}) +endif() +add_test(NAME Cech_complex_example_one_skeleton_from_points COMMAND $) -- cgit v1.2.3