From 1b0bbe522f5700941b3b8166e0bab9d93d5304ad Mon Sep 17 00:00:00 2001 From: ROUVREAU Vincent Date: Tue, 18 Jun 2019 22:20:46 +0200 Subject: cgal_mini_sphere_3d requires Eigen3 --- src/Simplex_tree/example/CMakeLists.txt | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) (limited to 'src') diff --git a/src/Simplex_tree/example/CMakeLists.txt b/src/Simplex_tree/example/CMakeLists.txt index 857e8518..1a6de60a 100644 --- a/src/Simplex_tree/example/CMakeLists.txt +++ b/src/Simplex_tree/example/CMakeLists.txt @@ -18,10 +18,6 @@ add_test(NAME Simplex_tree_example_simple_simplex_tree COMMAND $) -install(TARGETS Simplex_tree_example_from_cliques_of_graph DESTINATION bin) -install(TARGETS Simplex_tree_example_simple_simplex_tree DESTINATION bin) -install(TARGETS Simplex_tree_example_mini_simplex_tree DESTINATION bin) - # An example with Simplex-tree using CGAL alpha_shapes_3 if(GMP_FOUND AND CGAL_FOUND) add_executable ( Simplex_tree_example_alpha_shapes_3_from_off example_alpha_shapes_3_simplex_tree_from_off_file.cpp ) @@ -32,8 +28,9 @@ if(GMP_FOUND AND CGAL_FOUND) add_test(NAME Simplex_tree_example_alpha_shapes_3_from_off COMMAND $ "${CMAKE_SOURCE_DIR}/data/points/bunny_5000.off") - install(TARGETS Simplex_tree_example_alpha_shapes_3_from_off DESTINATION bin) +endif() +if (NOT CGAL_WITH_EIGEN3_VERSION VERSION_LESS 4.11.0) add_executable ( Simplex_tree_example_cech_complex_cgal_mini_sphere_3d cech_complex_cgal_mini_sphere_3d.cpp ) target_link_libraries(Simplex_tree_example_cech_complex_cgal_mini_sphere_3d ${Boost_PROGRAM_OPTIONS_LIBRARY} ${CGAL_LIBRARY}) if (TBB_FOUND) @@ -41,14 +38,11 @@ if(GMP_FOUND AND CGAL_FOUND) endif() add_test(NAME Simplex_tree_example_cech_complex_cgal_mini_sphere_3d COMMAND $ "${CMAKE_SOURCE_DIR}/data/points/tore3D_300.off" -r 0.3 -d 3) - - install(TARGETS Simplex_tree_example_alpha_shapes_3_from_off DESTINATION bin) -endif() +endif (NOT CGAL_WITH_EIGEN3_VERSION VERSION_LESS 4.11.0) add_executable ( Simplex_tree_example_graph_expansion_with_blocker graph_expansion_with_blocker.cpp ) if (TBB_FOUND) target_link_libraries(Simplex_tree_example_graph_expansion_with_blocker ${TBB_LIBRARIES}) endif() -add_test(NAME Simplex_tree_example_graph_expansion_with_blocker COMMAND $) -install(TARGETS Simplex_tree_example_graph_expansion_with_blocker DESTINATION bin) +add_test(NAME Simplex_tree_example_graph_expansion_with_blocker COMMAND $) -- cgit v1.2.3