diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2021-02-13 01:15:19 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2021-02-14 17:30:58 +0100 |
commit | f39fe57420cc7c84038c8fef7efa7af661ec0e5f (patch) | |
tree | 6ff1373f54c0c9da4f422d99e55749613c6b867b /CMakeLists.txt | |
parent | b588a3b46dc59f8b17f3f791f51fa6371d1d4c36 (diff) | |
download | tdeartwork-f39fe57420cc7c84038c8fef7efa7af661ec0e5f.tar.gz tdeartwork-f39fe57420cc7c84038c8fef7efa7af661ec0e5f.zip |
Add a CMake option to WITH_ALL_OPTIONS to align with other projects.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit 1f2c263aa23bfadf95d2f6b9ef39b0bc4564ceb4)
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 97fd9933..ce449197 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -43,11 +43,13 @@ tde_setup_paths( ) ##### optional stuff ############################ -option( WITH_XSCREENSAVER "Enable xscreensavers support" ON ) +option( WITH_ALL_OPTIONS "Enable all optional support" OFF ) + +option( WITH_XSCREENSAVER "Enable xscreensavers support" ${WITH_ALL_OPTIONS} ) option( WITH_ALL_INCLUDED_XSCREENSAVERS "Install all included desktop files regardless of the presence of XML" OFF ) -option( WITH_LIBART "Enable libart support" ON ) -option( WITH_OPENGL "Enable 3D GL modes" ON ) +option( WITH_LIBART "Enable libart support" ${WITH_ALL_OPTIONS} ) +option( WITH_OPENGL "Enable 3D GL modes" ${WITH_ALL_OPTIONS} ) option( WITH_ARTS "Enable aRts support" OFF ) ##### options comments ########################## |