summaryrefslogtreecommitdiff
path: root/src/cmake/modules/GUDHI_options.cmake
blob: 8379e3c63f023a5c5e51f0d56326902eeacefcf6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
option(WITH_GUDHI_BENCHMARK "Activate/deactivate benchmark compilation" OFF)
option(WITH_GUDHI_EXAMPLE "Activate/deactivate examples compilation and installation" OFF)
option(WITH_GUDHI_REMOTE_TEST "Activate/deactivate datasets fetching test which uses the Internet" OFF)
option(WITH_GUDHI_PYTHON "Activate/deactivate python module compilation and installation" ON)
option(WITH_GUDHI_TEST "Activate/deactivate examples compilation and installation" ON)
option(WITH_GUDHI_UTILITIES "Activate/deactivate utilities compilation and installation" ON)
option(WITH_GUDHI_THIRD_PARTY "Activate/deactivate third party libraries cmake detection. When set to OFF, it is useful for doxygen or user_version i.e." ON)

if (NOT WITH_GUDHI_THIRD_PARTY)
  set (WITH_GUDHI_BENCHMARK OFF)
  set (WITH_GUDHI_EXAMPLE OFF)
  set (WITH_GUDHI_PYTHON OFF)
  set (WITH_GUDHI_TEST OFF)
  set (WITH_GUDHI_UTILITIES OFF)
endif()