diff options
author | xengineering <me@xengineering.eu> | 2024-11-28 20:52:47 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-11-28 20:52:47 +0100 |
commit | ce503eaa13cf5d81a5710a45af0357156e11cfa0 (patch) | |
tree | aac150ddd60c65f5646152e068ea418ed0c89982 /CMakeLists.txt | |
parent | ab0449005c357126907f56ebf4512d53351544ef (diff) | |
download | graphics-inkscape-ce503eaa13cf5d81a5710a45af0357156e11cfa0.tar graphics-inkscape-ce503eaa13cf5d81a5710a45af0357156e11cfa0.tar.zst graphics-inkscape-ce503eaa13cf5d81a5710a45af0357156e11cfa0.zip |
Add support for *.ico format
This is intended to be used for website favicons. This commit embeds the
image only in one size while the ico format can handle multiple of them.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 39 |
1 files changed, 27 insertions, 12 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index aa37a4e..341e7b4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -10,24 +10,39 @@ set(formats pdf svg png + ico ) foreach(icon ${icons}) foreach(format ${formats}) set(source "${CMAKE_CURRENT_SOURCE_DIR}/icons/${icon}.svg") set(sink "${CMAKE_CURRENT_BINARY_DIR}/icons/${format}/${icon}.${format}") - add_custom_command( - OUTPUT - ${sink} - COMMAND - SELF_CALL=xxx # https://gitlab.com/inkscape/inkscape/-/issues/4716 - inkscape - --export-type=${format} - --export-filename=${sink} - ${source} - DEPENDS - ${source} - ) + if(format STREQUAL ico) + set(intermediate "${CMAKE_CURRENT_BINARY_DIR}/icons/png/${icon}.png") + add_custom_command( + OUTPUT + ${sink} + COMMAND + convert + ${intermediate} + ${sink} + DEPENDS + ${intermediate} + ) + else() + add_custom_command( + OUTPUT + ${sink} + COMMAND + SELF_CALL=xxx # https://gitlab.com/inkscape/inkscape/-/issues/4716 + inkscape + --export-type=${format} + --export-filename=${sink} + ${source} + DEPENDS + ${source} + ) + endif() add_custom_target( "icon-${icon}-${format}" ALL |