![]() |
VOOZH | about |
| 👁 cgit logo |
index : tellico |
| Tellico – collection manager for books, videos, music | TDE Gitea Workspace |
| summaryrefslogtreecommitdiffstats |
| author | Slávek Banko <slavek.banko@axis.cz> | 2021-07-04 12:07:04 +0200 |
|---|---|---|
| committer | Slávek Banko <slavek.banko@axis.cz> | 2021-07-04 18:44:53 +0200 |
| commit | 4ecb7f120ccc8491e53037fdc062470958b17463 (patch) | |
| tree | a6a969954ecf9e7562694a3524ea76c5ea9b461a | |
| parent | 9ff3cd66019a9fe792f7754dc13ac2be4ad23caa (diff) | |
| download | tellico-4ecb7f12.tar.gz tellico-4ecb7f12.zip | |
| -rw-r--r-- | CMakeLists.txt | 23 |
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 ########################## |