summaryrefslogtreecommitdiff
path: root/src/Bottleneck_distance
diff options
context:
space:
mode:
authorvrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2017-01-24 10:34:05 +0000
committervrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2017-01-24 10:34:05 +0000
commitbb30a984430efda39f83ba0284e6430c625e6db6 (patch)
treeb62772e5cc54bc69baf091b63a535e27e8a8e24b /src/Bottleneck_distance
parent9d0f497a32e6000e66201588484588b364a31ade (diff)
Remove utils for bottleneck
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/bottleneck_misc_fixes@1993 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 2bcefc9c6c59f7fae41306c7dfd844942ad5ccff
Diffstat (limited to 'src/Bottleneck_distance')
-rw-r--r--src/Bottleneck_distance/utils/CMakeLists.txt16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/Bottleneck_distance/utils/CMakeLists.txt b/src/Bottleneck_distance/utils/CMakeLists.txt
deleted file mode 100644
index febadea1..00000000
--- a/src/Bottleneck_distance/utils/CMakeLists.txt
+++ /dev/null
@@ -1,16 +0,0 @@
-cmake_minimum_required(VERSION 2.6)
-project(Bottleneck_distance_utils)
-
-# requires CGAL 4.8
-# cmake -DCGAL_DIR=~/workspace/CGAL-4.8 ../../..
-if(CGAL_FOUND)
- if (NOT CGAL_VERSION VERSION_LESS 4.8.0)
- if (EIGEN3_FOUND)
- add_executable (alpha_rips_persistence_bottleneck_distance alpha_rips_persistence_bottleneck_distance.cpp)
- target_link_libraries(alpha_rips_persistence_bottleneck_distance ${Boost_SYSTEM_LIBRARY} ${Boost_PROGRAM_OPTIONS_LIBRARY})
- if (TBB_FOUND)
- target_link_libraries(alpha_rips_persistence_bottleneck_distance ${TBB_LIBRARIES})
- endif(TBB_FOUND)
- endif(EIGEN3_FOUND)
- endif(NOT CGAL_VERSION VERSION_LESS 4.8.0)
-endif(CGAL_FOUND)