mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
25 lines
354 B
CMake
25 lines
354 B
CMake
|
|
SET (SVG_DIRS
|
|
biology
|
|
emergency
|
|
entertainment
|
|
geometric
|
|
gpsicons
|
|
icon
|
|
landmark
|
|
north_arrows
|
|
services
|
|
sport
|
|
symbol
|
|
transport)
|
|
|
|
|
|
FOREACH (SVG_DIR ${SVG_DIRS})
|
|
|
|
FILE (GLOB IMAGES ${SVG_DIR}/*.svg)
|
|
|
|
INSTALL (FILES ${IMAGES}
|
|
DESTINATION ${QGIS_DATA_DIR}/svg/${SVG_DIR})
|
|
|
|
ENDFOREACH (SVG_DIR)
|