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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <campbell@blender.org>2022-02-25 13:47:07 +0300
committerCampbell Barton <campbell@blender.org>2022-02-25 13:50:00 +0300
commit0bac962fe51be9ea98c24f27ca56700ddc84e646 (patch)
tree614be2181f7919871af0d83554a002ae13ae06d2 /source/creator
parent66328db703bba8196f159d15d9632c34d845892d (diff)
CMake: exclude add-ons that don't confirm to key requirements
These add-ons don't have documentation on blender.org, see: T95442 These can be re-enabled once documentation has been relocated.
Diffstat (limited to 'source/creator')
-rw-r--r--source/creator/CMakeLists.txt6
1 files changed, 6 insertions, 0 deletions
diff --git a/source/creator/CMakeLists.txt b/source/creator/CMakeLists.txt
index bc4d912405c..8d7728d0577 100644
--- a/source/creator/CMakeLists.txt
+++ b/source/creator/CMakeLists.txt
@@ -389,6 +389,12 @@ if(WITH_PYTHON)
PATTERN "__pycache__" EXCLUDE
PATTERN "${ADDON_EXCLUDE_CONDITIONAL}" EXCLUDE
PATTERN "${FREESTYLE_EXCLUDE_CONDITIONAL}" EXCLUDE
+
+ # Disable add-ons that don't conform to distribution requirements, see: T95442.
+ PATTERN "addons/amaranth" EXCLUDE
+ PATTERN "addons/mesh_tiny_cad" EXCLUDE
+ PATTERN "addons/mesh_tissue" EXCLUDE
+ PATTERN "addons/real_snow.py" EXCLUDE
)
unset(ADDON_EXCLUDE_CONDITIONAL)