summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2021-07-04 12:07:04 +0200
committerSlávek Banko <slavek.banko@axis.cz>2021-07-04 18:44:53 +0200
commit4ecb7f120ccc8491e53037fdc062470958b17463 (patch)
treea6a969954ecf9e7562694a3524ea76c5ea9b461a
parent9ff3cd66019a9fe792f7754dc13ac2be4ad23caa (diff)
downloadtellico-4ecb7f12.tar.gz
tellico-4ecb7f12.zip
Add the usual option BUILD_ALL.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz> (cherry picked from commit cc2140d66712bda681574bfc34d4f17edef06504)
-rw-r--r--CMakeLists.txt23
1 files changed, 12 insertions, 11 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index cba44df..935054f 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -64,17 +64,18 @@ option( WITH_SAX_LOADER "Use SAX document loading (experimental)" ${WITH_ALL_
##### user requested modules ####################
-option( BUILD_DOC "Build documentation" ON )
-option( BUILD_TRANSLATIONS "Build translations" ON )
-option( BUILD_XMLCATALOG "" OFF )
-
-option( BUILD_AMAZON_SUPPORT "Build Amazon.com searching support" ON )
-option( BUILD_IMDB_SUPPORT "Build IMDb searching support" ON )
-option( BUILD_CDTEXT_SUPPORT "Build CD-Text support (Linux only)" ON )
-option( BUILD_OOO_SUPPORT "Build LibreOffice/OpenOffice.org support" OFF )
-option( BUILD_EXEMPI_SUPPORT "Build exempi support" ON )
-option( BUILD_POPPLER_SUPPORT "Build poppler support" ON )
-option( BUILD_WEBCAM_SUPPORT "Build support for scanning barcodes (experimental)" ON )
+option( BUILD_ALL "Build all" ON )
+
+option( BUILD_DOC "Build documentation" ${BUILD_ALL} )
+option( BUILD_TRANSLATIONS "Build translations" ${BUILD_ALL} )
+
+option( BUILD_AMAZON_SUPPORT "Build Amazon.com searching support" ${BUILD_ALL} )
+option( BUILD_IMDB_SUPPORT "Build IMDb searching support" ${BUILD_ALL} )
+option( BUILD_CDTEXT_SUPPORT "Build CD-Text support (Linux only)" ${BUILD_ALL} )
+option( BUILD_OOO_SUPPORT "Build LibreOffice/OpenOffice.org support" OFF )
+option( BUILD_EXEMPI_SUPPORT "Build exempi support" ${BUILD_ALL} )
+option( BUILD_POPPLER_SUPPORT "Build poppler support" ${BUILD_ALL} )
+option( BUILD_WEBCAM_SUPPORT "Build support for scanning barcodes (experimental)" ${BUILD_ALL} )
##### configure checks ##########################