From ae85d4a3ea84060e3a209db7c35d6044fec09340 Mon Sep 17 00:00:00 2001 From: Vincent Rouvreau Date: Thu, 20 Jan 2022 16:37:09 +0100 Subject: Move cmake options in a dedicated file. cmake is no more looking for python and its modules when python option is disabled --- src/cmake/modules/GUDHI_options.cmake | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 src/cmake/modules/GUDHI_options.cmake (limited to 'src/cmake/modules/GUDHI_options.cmake') diff --git a/src/cmake/modules/GUDHI_options.cmake b/src/cmake/modules/GUDHI_options.cmake new file mode 100644 index 00000000..3cd0a489 --- /dev/null +++ b/src/cmake/modules/GUDHI_options.cmake @@ -0,0 +1,5 @@ +option(WITH_GUDHI_BENCHMARK "Activate/desactivate benchmark compilation" OFF) +option(WITH_GUDHI_EXAMPLE "Activate/desactivate examples compilation and installation" OFF) +option(WITH_GUDHI_PYTHON "Activate/desactivate python module compilation and installation" ON) +option(WITH_GUDHI_TEST "Activate/desactivate examples compilation and installation" ON) +option(WITH_GUDHI_UTILITIES "Activate/desactivate utilities compilation and installation" ON) -- cgit v1.2.3