diff options
| -rw-r--r-- | modules/ECMInstallIcons.cmake | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/modules/ECMInstallIcons.cmake b/modules/ECMInstallIcons.cmake index 549ebe19..156b16d5 100644 --- a/modules/ECMInstallIcons.cmake +++ b/modules/ECMInstallIcons.cmake @@ -268,8 +268,8 @@ function(ecm_install_icons)                  endif()                  set(size_dir "scalable")              else() -                if(NOT ext STREQUAL "png" AND NOT ext STREQUAL "mng") -                    message(WARNING "Fixed-size icon ${icon} is not PNG or MNG") +                if(NOT ext STREQUAL "png" AND NOT ext STREQUAL "mng" AND NOT ext STREQUAL "svg" AND NOT ext STREQUAL "svgz") +                    message(WARNING "Fixed-size icon ${icon} is not PNG/MNG/SVG/SVGZ")                  endif()                  set(size_dir "${size}x${size}")              endif() | 
