mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
18 lines
436 B
CMake
18 lines
436 B
CMake
SET (PROCESSING_PLUGIN_DIR ${QGIS_DATA_DIR}/python/plugins/processing)
|
|
|
|
ADD_SUBDIRECTORY(algs)
|
|
ADD_SUBDIRECTORY(core)
|
|
ADD_SUBDIRECTORY(gui)
|
|
ADD_SUBDIRECTORY(images)
|
|
ADD_SUBDIRECTORY(modeler)
|
|
ADD_SUBDIRECTORY(preconfigured)
|
|
ADD_SUBDIRECTORY(script)
|
|
ADD_SUBDIRECTORY(tests)
|
|
ADD_SUBDIRECTORY(tools)
|
|
ADD_SUBDIRECTORY(ui)
|
|
|
|
FILE(GLOB OTHER_FILES metadata.txt)
|
|
FILE(GLOB PY_FILES *.py)
|
|
|
|
PLUGIN_INSTALL(processing . ${PY_FILES} ${OTHER_FILES})
|