summaryrefslogtreecommitdiff
path: root/utilities/Bitmap_cubical_complex/CMakeLists.txt
diff options
context:
space:
mode:
authorGard Spreemann <gspreemann@gmail.com>2018-02-02 14:05:27 +0100
committerGard Spreemann <gspreemann@gmail.com>2018-02-02 14:05:27 +0100
commitdf9caafd97960a610906a79cf40ba52e40c6cf48 (patch)
treea9c0b0330239e6438510432b0ba78f35799224d9 /utilities/Bitmap_cubical_complex/CMakeLists.txt
parent5bb200877fac0090032b9d56b782d2ae361efa9b (diff)
parent8e51c74d8855a641c006765ee246402e218828f3 (diff)
Merge branch 'dfsg/latest' into debian/sid
Diffstat (limited to 'utilities/Bitmap_cubical_complex/CMakeLists.txt')
-rw-r--r--utilities/Bitmap_cubical_complex/CMakeLists.txt29
1 files changed, 29 insertions, 0 deletions
diff --git a/utilities/Bitmap_cubical_complex/CMakeLists.txt b/utilities/Bitmap_cubical_complex/CMakeLists.txt
new file mode 100644
index 00000000..676a730a
--- /dev/null
+++ b/utilities/Bitmap_cubical_complex/CMakeLists.txt
@@ -0,0 +1,29 @@
+cmake_minimum_required(VERSION 2.6)
+project(Bitmap_cubical_complex_utilities)
+
+add_executable ( cubical_complex_persistence cubical_complex_persistence.cpp )
+if (TBB_FOUND)
+ target_link_libraries(cubical_complex_persistence ${TBB_LIBRARIES})
+endif()
+
+add_test(NAME Bitmap_cubical_complex_utility_persistence_one_sphere COMMAND $<TARGET_FILE:cubical_complex_persistence>
+ "${CMAKE_SOURCE_DIR}/data/bitmap/CubicalOneSphere.txt")
+
+add_test(NAME Bitmap_cubical_complex_utility_persistence_two_sphere COMMAND $<TARGET_FILE:cubical_complex_persistence>
+ "${CMAKE_SOURCE_DIR}/data/bitmap/CubicalTwoSphere.txt")
+
+add_executable ( periodic_cubical_complex_persistence periodic_cubical_complex_persistence.cpp )
+if (TBB_FOUND)
+ target_link_libraries(periodic_cubical_complex_persistence ${TBB_LIBRARIES})
+endif()
+
+add_test(NAME Bitmap_cubical_complex_utility_periodic_boundary_conditions_2d_torus
+ COMMAND $<TARGET_FILE:periodic_cubical_complex_persistence>
+ "${CMAKE_SOURCE_DIR}/data/bitmap/2d_torus.txt")
+
+add_test(NAME Bitmap_cubical_complex_utility_periodic_boundary_conditions_3d_torus
+ COMMAND $<TARGET_FILE:periodic_cubical_complex_persistence>
+ "${CMAKE_SOURCE_DIR}/data/bitmap/3d_torus.txt")
+
+install(TARGETS cubical_complex_persistence DESTINATION bin)
+install(TARGETS periodic_cubical_complex_persistence DESTINATION bin)