mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
37 lines
423 B
CMake
37 lines
423 B
CMake
|
|
SET (SVG_DIRS
|
|
accommodation
|
|
amenity
|
|
arrows
|
|
backgrounds
|
|
components
|
|
crosses
|
|
emergency
|
|
entertainment
|
|
food
|
|
geometric
|
|
gpsicons
|
|
health
|
|
icon
|
|
landmark
|
|
money
|
|
religion
|
|
services
|
|
shopping
|
|
sport
|
|
symbol
|
|
tourist
|
|
transport
|
|
wind_roses
|
|
)
|
|
|
|
|
|
FOREACH (SVG_DIR ${SVG_DIRS})
|
|
|
|
FILE (GLOB IMAGES ${SVG_DIR}/*.svg)
|
|
|
|
INSTALL (FILES ${IMAGES}
|
|
DESTINATION ${QGIS_DATA_DIR}/svg/${SVG_DIR})
|
|
|
|
ENDFOREACH (SVG_DIR)
|