mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
From now on, plugins must have metadata.txt file (with INI format) that is used for storing of metadata. This has two advantages: - plugins do not need to be loaded in order to read metadata - repository can parse the metadata more easily
13 lines
378 B
CMake
13 lines
378 B
CMake
ADD_SUBDIRECTORY(db_plugins)
|
|
ADD_SUBDIRECTORY(icons)
|
|
|
|
FILE(GLOB OTHER_FILES LICENCE README TODO)
|
|
FILE(GLOB PY_FILES *.py)
|
|
|
|
FILE(GLOB UI_FILES ui/*.ui)
|
|
PYQT4_WRAP_UI(PYUI_FILES ${UI_FILES})
|
|
PYQT4_ADD_RESOURCES(PYRC_FILES resources.qrc)
|
|
|
|
PLUGIN_INSTALL(db_manager . ${OTHER_FILES} ${PY_FILES} ${PYRC_FILES} metadata.txt)
|
|
PLUGIN_INSTALL(db_manager ui ${PYUI_FILES} ui/__init__.py)
|