mirror of
https://github.com/qgis/QGIS.git
synced 2025-03-10 00:13:55 -04:00
8 lines
315 B
CMake
8 lines
315 B
CMake
|
FILE(GLOB PY_FILES *.py)
|
||
|
FILE(GLOB OTHER_FILES copyright.txt)
|
||
|
FILE(GLOB ICON_FILES icons/*.png)
|
||
|
|
||
|
INSTALL(FILES ${PY_FILES} DESTINATION ${SEXTANTE_PLUGIN_DIR}/ftools)
|
||
|
INSTALL(FILES ${OTHER_FILES} DESTINATION ${SEXTANTE_PLUGIN_DIR}/ftools)
|
||
|
INSTALL(FILES ${ICON_FILES} DESTINATION ${SEXTANTE_PLUGIN_DIR}/ftools/icons)
|