diff options
author | Slávek Banko <[email protected]> | 2021-02-13 01:15:19 +0100 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2021-02-13 01:15:19 +0100 |
commit | 1f2c263aa23bfadf95d2f6b9ef39b0bc4564ceb4 (patch) | |
tree | 21858894041f4a053cf9ba9d08f3719fdd6d0798 | |
parent | 7a7a60a910b04e9af84a1e3161d8661499de5384 (diff) | |
download | tdeartwork-1f2c263aa23bfadf95d2f6b9ef39b0bc4564ceb4.tar.gz tdeartwork-1f2c263aa23bfadf95d2f6b9ef39b0bc4564ceb4.zip |
Add a CMake option to WITH_ALL_OPTIONS to align with other projects.
Signed-off-by: Slávek Banko <[email protected]>
-rw-r--r-- | CMakeLists.txt | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 7505b53d..f1960221 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 ########################## |