blob: 939786cdb0e80c5a1c65ccde8426b3c54d902999 (
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
|
set(icons
example
)
set(formats
pdf
svg
)
foreach(icon ${icons})
foreach(format ${formats})
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
WORKING_DIRECTORY
${CMAKE_CURRENT_SOURCE_DIR}
DEPENDS
${CMAKE_CURRENT_SOURCE_DIR}/${icon}.svg
)
add_custom_target(
"icon-${icon}-${format}"
ALL
DEPENDS
${CMAKE_CURRENT_BINARY_DIR}/${icon}.${format}
)
endforeach()
endforeach()
|