Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorLipu Fei <lipu.fei815@gmail.com>2019-10-28 16:37:07 +0300
committerLipu Fei <lipu.fei815@gmail.com>2019-10-28 16:37:22 +0300
commit3f1a3d76eab136f818bfef8513cd42ad8f477265 (patch)
treeecb4aed8c96e42dab78d2e0b71edfc2d5792254b /cmake
parent9e6207794b682df4e275410866971ec93734cc7d (diff)
Add more docs
CURA-6557
Diffstat (limited to 'cmake')
-rw-r--r--cmake/CuraPluginInstall.cmake5
1 files changed, 3 insertions, 2 deletions
diff --git a/cmake/CuraPluginInstall.cmake b/cmake/CuraPluginInstall.cmake
index 2eadb6c18f..d35e74acb8 100644
--- a/cmake/CuraPluginInstall.cmake
+++ b/cmake/CuraPluginInstall.cmake
@@ -60,8 +60,9 @@ foreach(_plugin_json_path ${_plugin_json_list})
string(TOLOWER "${_plugin_dir_name}" _plugin_dir_name_lowercase)
# Check if this plugin needs to be skipped for installation
- set(_add_plugin ON)
- set(_is_no_install_plugin OFF)
+ set(_add_plugin ON) # Indicates if this plugin should be added to the build or not.
+ set(_is_no_install_plugin OFF) # If this plugin will not be added, this indicates if it's because the plugin is
+ # specified in the NO_INSTALL_PLUGINS list.
if(_no_install_plugin_list)
if("${_plugin_dir_name_lowercase}" IN_LIST _no_install_plugin_list)
set(_add_plugin OFF)