blob: aa37a4e39424b72fde2880369799c35b4ffca6b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
cmake_minimum_required(VERSION 3.10)
project(art-inkscape LANGUAGES NONE)
set(icons
example
)
set(formats
pdf
svg
png
)
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}
)
add_custom_target(
"icon-${icon}-${format}"
ALL
DEPENDS
${sink}
)
endforeach()
endforeach()
|