1
0
Fork 0
inkscape/share/examples/CMakeLists.txt
Daniel Baumann 02d935e272
Adding upstream version 1.4.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-22 23:40:13 +02:00

11 lines
310 B
CMake

# SPDX-License-Identifier: GPL-2.0-or-later
file(GLOB _FILES "*.svg" "*.svgz" "*.pov")
if(WIN32)
install(FILES ${_FILES}
DESTINATION ${INKSCAPE_SHARE_INSTALL}/examples
COMPONENT examples)
else()
install(FILES ${_FILES}
DESTINATION ${INKSCAPE_SHARE_INSTALL}/examples
COMPONENT inkscape)
endif()