diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-10-27 22:48:48 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-11-10 09:37:37 +0900 |
| commit | 30054f8c56e4b92c1d3a93367ff3e877b98823bd (patch) | |
| tree | d8d537cd354f25c304595715235d87b7d8631985 | |
| parent | c3ebd68d97339c965751fa074a17c00d739124fa (diff) | |
| download | tde-cmake-30054f8c.tar.gz tde-cmake-30054f8c.zip | |
Add handling of xpm files to tde_install_icons macror14.1.x
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 7329c5659231beb753e39f600f5ac2d6bef92e3f)
| -rw-r--r-- | modules/TDEMacros.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/TDEMacros.cmake b/modules/TDEMacros.cmake index 0b59eb4..d941780 100644 --- a/modules/TDEMacros.cmake +++ b/modules/TDEMacros.cmake @@ -279,7 +279,7 @@ macro( tde_install_icons ) foreach( _icon ${_icons} ) unset( _theme ) # clearing - file(GLOB _icon_files *-${_icon}.png *-${_icon}.mng _icon_files *-${_icon}.svg* ) + file(GLOB _icon_files *-${_icon}.png *-${_icon}.mng _icon_files *-${_icon}.svg* *-${_icon}.xpm ) foreach( _icon_file ${_icon_files} ) # FIXME need a review string( REGEX MATCH "^.*/([a-zA-Z][a-zA-Z])([0-9a-zA-Z]+)\\-([a-z]+)\\-([^/]+)$" _dummy "${_icon_file}" ) |
