mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
13 lines
317 B
CMake
13 lines
317 B
CMake
FILE(GLOB INSTALLER_FILES *.py)
|
|
FILE(GLOB UI_FILES *.ui)
|
|
PYQT4_WRAP_UI(PYUI_FILES ${UI_FILES})
|
|
PYQT4_ADD_RESOURCES(PYRC_FILES resources.qrc)
|
|
|
|
SET(INSTALLER_FILES ${INSTALLER_FILES} ${PYUI_FILES} ${PYRC_FILES})
|
|
|
|
PLUGIN_INSTALL(fTools . ${INSTALLER_FILES} __init__.py)
|
|
|
|
ADD_SUBDIRECTORY(tools)
|
|
ADD_SUBDIRECTORY(icons)
|
|
|