mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
14 lines
450 B
CMake
14 lines
450 B
CMake
FILE(GLOB PY_FILES __init__.py link_types.py plugin.py util.py)
|
|
PLUGIN_INSTALL(MetaSearch . ${PY_FILES} metadata.txt LICENSE.txt)
|
|
|
|
FOREACH(dir ui dialogs images resources resources/templates)
|
|
FILE(GLOB _items ${dir}/*)
|
|
SET(_files)
|
|
FOREACH(_item ${_items})
|
|
IF(NOT IS_DIRECTORY ${_item})
|
|
LIST(APPEND _files ${_item})
|
|
ENDIF(NOT IS_DIRECTORY ${_item})
|
|
ENDFOREACH(_item)
|
|
PLUGIN_INSTALL(MetaSearch ${dir} ${_files})
|
|
ENDFOREACH(dir)
|