diff options
author | xengineering <me@xengineering.eu> | 2024-11-28 21:31:07 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-11-28 21:33:38 +0100 |
commit | 2cb8cb4c3d5bad045d72576655a09ca689286a94 (patch) | |
tree | 2ffe96a3e943e5342cfe221021abe4fdd5eca08b | |
parent | 5349c8967f4ca96e4367fdc3e147f33ca44c52f9 (diff) | |
download | graphics-inkscape-2cb8cb4c3d5bad045d72576655a09ca689286a94.tar graphics-inkscape-2cb8cb4c3d5bad045d72576655a09ca689286a94.tar.zst graphics-inkscape-2cb8cb4c3d5bad045d72576655a09ca689286a94.zip |
icons: Change CMake target format
The new format is now `icon-{format}-{name}`. This makes it consistent
with the nesting in the build folder.
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 797128f..9cabea4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -45,7 +45,7 @@ foreach(icon_file ${icon_files}) ) endif() add_custom_target( - "icon-${icon}-${format}" + "icon-${format}-${icon}" ALL DEPENDS ${sink} |