diff options
author | xengineering <me@xengineering.eu> | 2024-11-28 19:42:35 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-11-28 19:42:35 +0100 |
commit | 8a8d8af76578970651738ccd6d141333a82ca9d0 (patch) | |
tree | c6cdde8234806cf460cef3a45b52a5e13eca3046 /icons/CMakeLists.txt | |
parent | 25666da52598e9993392835ad87fd3cd2fcd4af4 (diff) | |
download | graphics-inkscape-8a8d8af76578970651738ccd6d141333a82ca9d0.tar graphics-inkscape-8a8d8af76578970651738ccd6d141333a82ca9d0.tar.zst graphics-inkscape-8a8d8af76578970651738ccd6d141333a82ca9d0.zip |
Switch to dual-licensing with CC BY-SA and MPL 2.0
This repository mixes art and code. Since it is hard to find a suitable
license for both dual-licensing is an obvious choice to fix that
problem.
Diffstat (limited to 'icons/CMakeLists.txt')
-rw-r--r-- | icons/CMakeLists.txt | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/icons/CMakeLists.txt b/icons/CMakeLists.txt deleted file mode 100644 index 16ee68c..0000000 --- a/icons/CMakeLists.txt +++ /dev/null @@ -1,46 +0,0 @@ -set(icons - example -) - -set(formats - pdf - svg - png - jpg -) - -foreach(icon ${icons}) - foreach(format ${formats}) - if(format STREQUAL jpg) - add_custom_command( - OUTPUT - ${CMAKE_CURRENT_BINARY_DIR}/${icon}.${format} - COMMAND - magick - ${CMAKE_CURRENT_BINARY_DIR}/${icon}.png - ${CMAKE_CURRENT_BINARY_DIR}/${icon}.${format} - DEPENDS - ${CMAKE_CURRENT_BINARY_DIR}/${icon}.png - ) - else() - add_custom_command( - OUTPUT - ${CMAKE_CURRENT_BINARY_DIR}/${icon}.${format} - COMMAND - SELF_CALL=xxx # https://gitlab.com/inkscape/inkscape/-/issues/4716 - inkscape - --export-type=${format} - --export-filename=${CMAKE_CURRENT_BINARY_DIR}/${icon}.${format} - ${CMAKE_CURRENT_SOURCE_DIR}/${icon}.svg - DEPENDS - ${CMAKE_CURRENT_SOURCE_DIR}/${icon}.svg - ) - endif() - add_custom_target( - "icon-${icon}-${format}" - ALL - DEPENDS - ${CMAKE_CURRENT_BINARY_DIR}/${icon}.${format} - ) - endforeach() -endforeach() |