diff --git a/CMakeLists.txt b/CMakeLists.txt index 7f8af5a71..a0a5a65db 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -56,31 +56,32 @@ add_custom_target(install-apidox ##### optional stuff ############################ -option( WITH_SASL "Enable SASL support" OFF ) -option( WITH_LDAP "Enable LDAP support" OFF ) -option( WITH_SAMBA "Enable SAMBA support" OFF ) -option( WITH_OPENEXR "Enable openexr support" OFF ) -option( WITH_XCOMPOSITE "Enable xcomposite support" OFF ) -option( WITH_XCURSOR "Enable xcursor support" OFF ) -option( WITH_XFIXES "Enable xfixes support" OFF ) -option( WITH_XRANDR "Enable xrandr support" OFF ) -option( WITH_XRENDER "Enable xrender support" OFF ) -option( WITH_XDAMAGE "Enable xdamage support" OFF ) -option( WITH_XEXT "Enable xext support" OFF ) -option( WITH_XTEST "Enable xext support" OFF ) -option( WITH_XSCREENSAVER "Enable xscreensaver support" OFF ) -option( WITH_LIBART "Enable libart support (for SVG icons and wallpapers)" OFF ) -option( WITH_LIBUSB "Enable control of some mouse models through libusb" OFF ) -option( WITH_LIBRAW1394 "Enable visualization of ieee1394 devices through libraw1394" OFF ) -option( WITH_SUDO_KDESU_BACKEND "Use sudo as backend for kdesu (default is su)" OFF ) -option( WITH_PAM "kdm should use PAM" OFF ) -option( WITH_SHADOW "kdm should use shadow passwords" OFF ) -option( WITH_XDMCP "xdmcp support for kdm" OFF ) -option( WITH_XINERAMA "Enable xinerama extension support" OFF ) -option( WITH_ARTS "Enable aRts support" OFF ) -option( WITH_I8K "Enable Dell laptop support (ksysguard)" OFF ) -option( WITH_HAL "Enable HAL support" OFF ) -option( WITH_KDESKTOP_LOCK_BACKTRACE "Enable backtrace in kdesktop_lock exception handler" OFF ) +option( WITH_ALL_OPTIONS "Enable all optional support" OFF ) +option( WITH_SASL "Enable SASL support" ${WITH_ALL_OPTIONS} ) +option( WITH_LDAP "Enable LDAP support" ${WITH_ALL_OPTIONS} ) +option( WITH_SAMBA "Enable SAMBA support" ${WITH_ALL_OPTIONS} ) +option( WITH_OPENEXR "Enable openexr support" ${WITH_ALL_OPTIONS} ) +option( WITH_XCOMPOSITE "Enable xcomposite support" ${WITH_ALL_OPTIONS} ) +option( WITH_XCURSOR "Enable xcursor support" ${WITH_ALL_OPTIONS} ) +option( WITH_XFIXES "Enable xfixes support" ${WITH_ALL_OPTIONS} ) +option( WITH_XRANDR "Enable xrandr support" ${WITH_ALL_OPTIONS} ) +option( WITH_XRENDER "Enable xrender support" ${WITH_ALL_OPTIONS} ) +option( WITH_XDAMAGE "Enable xdamage support" ${WITH_ALL_OPTIONS} ) +option( WITH_XEXT "Enable xext support" ${WITH_ALL_OPTIONS} ) +option( WITH_XTEST "Enable xext support" ${WITH_ALL_OPTIONS} ) +option( WITH_XSCREENSAVER "Enable xscreensaver support" ${WITH_ALL_OPTIONS} ) +option( WITH_LIBART "Enable libart support (for SVG icons and wallpapers)" ${WITH_ALL_OPTIONS} ) +option( WITH_LIBUSB "Enable control of some mouse models through libusb" ${WITH_ALL_OPTIONS} ) +option( WITH_LIBRAW1394 "Enable visualization of ieee1394 devices through libraw1394" ${WITH_ALL_OPTIONS} ) +option( WITH_SUDO_KDESU_BACKEND "Use sudo as backend for kdesu (default is su)" ${WITH_ALL_OPTIONS} ) +option( WITH_PAM "kdm should use PAM" ${WITH_ALL_OPTIONS} ) +option( WITH_SHADOW "kdm should use shadow passwords" ${WITH_ALL_OPTIONS} ) +option( WITH_XDMCP "xdmcp support for kdm" ${WITH_ALL_OPTIONS} ) +option( WITH_XINERAMA "Enable xinerama extension support" ${WITH_ALL_OPTIONS} ) +option( WITH_ARTS "Enable aRts support" ${WITH_ALL_OPTIONS} ) +option( WITH_I8K "Enable Dell laptop support (ksysguard)" ${WITH_ALL_OPTIONS} ) +option( WITH_HAL "Enable HAL support" ${WITH_ALL_OPTIONS} ) +option( WITH_KDESKTOP_LOCK_BACKTRACE "Enable backtrace in kdesktop_lock exception handler" ${WITH_ALL_OPTIONS} ) ##### user requested modules ####################