X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=CMakeLists.txt;h=5668fcf0d021cac979b847b764acfc8834a137d4;hp=8d9aaaec2d2de06ed4a03bdd2700a713ae4d5bfa;hb=09e964ea3cd4995374dd7adb33256f3cefd47032;hpb=f6ceb85c6baa3e42dd5711fb62c96aed181ba46f diff --git a/CMakeLists.txt b/CMakeLists.txt index 8d9aaaec..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)" OFF "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 @@ -656,7 +652,7 @@ git_describe(GIT_DESCRIBE --long) # If in a Git repo we can get the commit-date from a git command if (GIT_HEAD) execute_process( - COMMAND git show -s --format=%ct + COMMAND git -c log.showsignature=false show -s --format=%ct WORKING_DIRECTORY ${CMAKE_SOURCE_DIR} OUTPUT_VARIABLE GIT_COMMIT_DATE OUTPUT_STRIP_TRAILING_WHITESPACE