summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CMakeLists.txt2
-rw-r--r--icons/CMakeLists.txt19
2 files changed, 21 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 8b7649a..1d9bc93 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,3 +1,5 @@
cmake_minimum_required(VERSION 3.10)
project(art-inkscape LANGUAGES NONE)
+
+add_subdirectory(icons)
diff --git a/icons/CMakeLists.txt b/icons/CMakeLists.txt
new file mode 100644
index 0000000..e5d15d7
--- /dev/null
+++ b/icons/CMakeLists.txt
@@ -0,0 +1,19 @@
+set(icons
+ example
+)
+
+foreach(icon ${icons})
+ add_custom_target("icon-${icon}-pdf" ALL)
+ add_custom_command(
+ TARGET
+ "icon-${icon}-pdf"
+ POST_BUILD
+ COMMAND
+ inkscape
+ --export-type=pdf
+ --export-filename=${CMAKE_CURRENT_BINARY_DIR}/${icon}.pdf
+ ${CMAKE_CURRENT_SOURCE_DIR}/${icon}.svg
+ WORKING_DIRECTORY
+ ${CMAKE_CURRENT_SOURCE_DIR}
+ )
+endforeach()