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 ##########################