[Bf-blender-cvs] [0bac962fe51] blender-v3.1-release: CMake: exclude add-ons that don't confirm to key requirements

Campbell Barton noreply at git.blender.org
Fri Feb 25 11:50:13 CET 2022


Commit: 0bac962fe51be9ea98c24f27ca56700ddc84e646
Author: Campbell Barton
Date:   Fri Feb 25 21:47:07 2022 +1100
Branches: blender-v3.1-release
https://developer.blender.org/rB0bac962fe51be9ea98c24f27ca56700ddc84e646

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.

===================================================================

M	source/creator/CMakeLists.txt

===================================================================

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)



More information about the Bf-blender-cvs mailing list