We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent d7a7a46 commit d6e832dCopy full SHA for d6e832d
python/plugins/CMakeLists.txt
@@ -8,9 +8,9 @@ ENDIF(WITH_PY_COMPILE)
8
9
MACRO (PLUGIN_INSTALL plugin subdir )
10
INSTALL(FILES ${ARGN} DESTINATION ${QGIS_DATA_DIR}/python/plugins/${plugin}/${subdir})
11
+ STRING(REPLACE "/" "_" subdir_sane "${subdir}")
12
+ ADD_CUSTOM_TARGET(${plugin}_${subdir_sane}_stageinstall ALL DEPENDS ${ARGN})
13
IF(WITH_STAGED_PLUGINS OR "${plugin}" STREQUAL "plugin_installer")
- STRING(REPLACE "/" "_" subdir_sane "${subdir}")
- ADD_CUSTOM_TARGET(${plugin}_${subdir_sane}_stageinstall ALL DEPENDS ${ARGN})
14
IF(WITH_PY_COMPILE)
15
ADD_DEPENDENCIES(pycompile_staged ${plugin}_${subdir_sane}_stageinstall)
16
ENDIF(WITH_PY_COMPILE)
0 commit comments