mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
15 lines
432 B
CMake
15 lines
432 B
CMake
|
FILE(GLOB INSTALLER_FILES *.py)
|
||
|
SET(INSTALLER_FILES ${INSTALLER_FILES})
|
||
|
|
||
|
FILE(GLOB UI_FILES *.ui)
|
||
|
PYQT4_WRAP_UI(PYUI_FILES ${UI_FILES})
|
||
|
PYQT4_ADD_RESOURCES(PYRC_FILES resources.qrc)
|
||
|
ADD_CUSTOM_TARGET(gdaltools ALL DEPENDS ${PYUI_FILES} ${PYRC_FILES})
|
||
|
|
||
|
SET(INSTALLER_FILES ${INSTALLER_FILES} ${PYUI_FILES} ${PYRC_FILES})
|
||
|
|
||
|
INSTALL(FILES ${INSTALLER_FILES} DESTINATION ${QGIS_DATA_DIR}/python/plugins/GdalTools)
|
||
|
|
||
|
SUBDIRS(tools icons)
|
||
|
|