summaryrefslogtreecommitdiffstats
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2022-08-10 21:16:37 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2022-08-11 08:52:29 +0900
commit946d4e1eb567d7601e5ea3d647d6f24a86229cd4 (patch)
tree1c0f47a4ecbe30efd6fbf3c78f2a418379865063 /CMakeLists.txt
parentc5f9bde2d38d78196f05bfcbfc52d04f089a928a (diff)
downloadarts-r14.0.13.tar.gz
arts-r14.0.13.zip
Add man pages from tde-packaging repo.r14.0.13r14.0.x
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 10a05109432154e8392294d2aeb2605b3fc6dda3)
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt10
1 files changed, 9 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 96d138f..de310d0 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -49,7 +49,7 @@ include( TDESetupPaths )
tde_setup_paths( )
-##### user requested options ####################
+##### user requested modules ####################
option( WITH_ALL_OPTIONS "Enable all optional support" OFF )
option( WITH_ALSA "Enable ALSA support" ON )
@@ -61,6 +61,9 @@ option( WITH_JACK "Enable JACK support" ${WITH_ALL_OPTIONS} )
option( WITH_SNDIO "Enable SNDIO support" OFF )
option( WITH_GCC_VISIBILITY "Enable fvisibility and fvisibility-inlines-hidden" ${WITH_ALL_OPTIONS} )
+option( BUILD_ALL "Build all" ON )
+option( BUILD_DOC "Build doc" ${BUILD_ALL} )
+
##### configure checks
@@ -88,6 +91,11 @@ add_subdirectory( gmcop )
add_subdirectory( qtmcop )
+##### other data ################################
+
+tde_conditional_add_project_docs( BUILD_DOC )
+
+
##### write config.h file #######################
configure_file( config.h.cmake config.h @ONLY )