X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=CMakeLists.txt;h=5668fcf0d021cac979b847b764acfc8834a137d4;hp=946b677bd93df985342b05ae52762a035bf6cbbc;hb=7d4dbdf00ab92e8c322656bd2d4d7034ef547001;hpb=aea955ae9f1e3c85fab50ff832b6b1a400a6c0af diff --git a/CMakeLists.txt b/CMakeLists.txt index 946b677b..5668fcf0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -71,23 +71,19 @@ else() add_feature_info(WITH_KDE WITH_KDE "Integrate with the KDE Frameworks runtime environment") endif() -cmake_dependent_option(WITH_BREEZE "Install Breeze icon theme (usually shipped with KDE)" ON "NOT WITH_KDE" OFF) -cmake_dependent_option(WITH_BREEZE_DARK "Install Dark Breeze icon theme (usually shipped with KDE)" ON "NOT WITH_KDE" OFF) -cmake_dependent_option(WITH_OXYGEN "Install Oxygen icon theme (usually shipped with KDE)" OFF "NOT WITH_KDE" OFF) -if (NOT WITH_KDE) - add_feature_info(WITH_BREEZE WITH_BREEZE "Install Breeze icon theme") - add_feature_info(WITH_BREEZE_DARK WITH_BREEZE_DARK "Install Dark Breeze icon theme") - add_feature_info(WITH_OXYGEN WITH_OXYGEN "Install Oxygen icon theme") -endif() +# Icon theme support. By default, install the Breeze icon theme (may be disabled if a system installation is present) +option(WITH_BUNDLED_ICONS "Install required icons from the Breeze icon theme" ON) +add_feature_info(WITH_BUNDLED_ICONS WITH_BUNDLED_ICONS "Install required icons from the Breeze icon theme") -if (WITH_OXYGEN) - add_definitions(-DWITH_OXYGEN) -endif() -if (WITH_BREEZE) - add_definitions(-DWITH_BREEZE) +# For Qt4, always support Oxygen +cmake_dependent_option(WITH_OXYGEN_ICONS "Support the Oxygen icon theme (KDE4)" OFF "USE_QT5" ON) +add_feature_info(WITH_OXYGEN_ICONS WITH_OXYGEN_ICONS "Support the Oxygen icon theme (KDE4)" OFF) + +if (WITH_BUNDLED_ICONS) + add_definitions(-DWITH_BUNDLED_ICONS) endif() -if (WITH_BREEZE_DARK) - add_definitions(-DWITH_BREEZE_DARK) +if (WITH_OXYGEN_ICONS) + add_definitions(-DWITH_OXYGEN_ICONS) endif() # For this, the feature info is added after we know if QtWebkit is installed