diff options
author | Urs Wolfer <uwolfer@kde.org> | 2006-07-27 22:48:41 +0000 |
---|---|---|
committer | Urs Wolfer <uwolfer@kde.org> | 2006-07-27 22:48:41 +0000 |
commit | 5b0de2d6a93d8442edad860b8413ee7abb1dedc2 (patch) | |
tree | 2ddb031e05d0b147323d244543ba2c4971728ece | |
parent | 507899040d89767c803d312610dbe6f810955a33 (diff) | |
download | extra-cmake-modules-5b0de2d6a93d8442edad860b8413ee7abb1dedc2.tar.gz extra-cmake-modules-5b0de2d6a93d8442edad860b8413ee7abb1dedc2.tar.bz2 |
typo--
svn path=/trunk/KDE/kdelibs/; revision=567081
-rw-r--r-- | modules/KDE4Macros.cmake | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/modules/KDE4Macros.cmake b/modules/KDE4Macros.cmake index ded5ac84..addf2400 100644 --- a/modules/KDE4Macros.cmake +++ b/modules/KDE4Macros.cmake @@ -227,31 +227,31 @@ MACRO (KDE4_INSTALL_ICONS _defaultpath _theme ) STRING(REGEX REPLACE "^.*/([a-zA-Z]+)([0-9]+)\\-([a-z]+)\\-(.+\\.png)$" "\\2" _size "${_current_ICON}") STRING(REGEX REPLACE "^.*/([a-zA-Z]+)([0-9]+)\\-([a-z]+)\\-(.+\\.png)$" "\\3" _group "${_current_ICON}") STRING(REGEX REPLACE "^.*/([a-zA-Z]+)([0-9]+)\\-([a-z]+)\\-(.+\\.png)$" "\\4" _name "${_current_ICON}") - + if( ${_type} STREQUAL "cr" ) if(${_theme} STREQUAL "crystalsvg" ) - _KDE4_ADD_ICON_INSTALL_RULE(${CMAKE_CURRENT_BINARY_DIR}/install_icons.cmake - ${_defaultpath}/${_theme}/${_size}x${_size} + _KDE4_ADD_ICON_INSTALL_RULE(${CMAKE_CURRENT_BINARY_DIR}/install_icons.cmake + ${_defaultpath}/${_theme}/${_size}x${_size} ${_group} ${_current_ICON} ${_name}) #else(${_theme} STREQUAL "crystalsvg" ) #MESSAGE(STATUS "icon : ${_current_ICON} is not put into good theme directory ${_theme}") endif(${_theme} STREQUAL "crystalsvg" ) endif(${_type} STREQUAL "cr" ) - + if( ${_type} STREQUAL "lo" ) if(${_theme} STREQUAL "locolor" ) _KDE4_ADD_ICON_INSTALL_RULE(${CMAKE_CURRENT_BINARY_DIR}/install_icons.cmake - ${_defaultpath}/${_theme}/${_size}x${_size}· + ${_defaultpath}/${_theme}/${_size}x${_size} ${_group} ${_current_ICON} ${_name}) #else(${_theme} STREQUAL "locolor" ) # MESSAGE(STATUS "icon : ${_current_ICON} is not put into good theme directory ${_theme}") endif(${_theme} STREQUAL "locolor" ) endif(${_type} STREQUAL "lo" ) - + if( ${_type} STREQUAL "hi" ) if( ${_theme} STREQUAL "hicolor" ) _KDE4_ADD_ICON_INSTALL_RULE(${CMAKE_CURRENT_BINARY_DIR}/install_icons.cmake - ${_defaultpath}/${_theme}/${_size}x${_size}· + ${_defaultpath}/${_theme}/${_size}x${_size} ${_group} ${_current_ICON} ${_name}) #else(${_theme} STREQUAL "hicolor" ) # MESSAGE(STATUS "icon : ${_current_ICON} is not put into good theme directory ${_theme}") |