From c11c23c173e68b574b3af6970cec100e248eafd8 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Fri, 19 May 2023 09:05:06 +0200 Subject: [PATCH] Disable plugins for Enterprise This would then default to default behaviour of slots Contributes to CURA-10475 --- conanfile.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/conanfile.py b/conanfile.py index 68e73913d0..87e3652188 100644 --- a/conanfile.py +++ b/conanfile.py @@ -262,6 +262,8 @@ class CuraConan(ConanFile): self.options["pysavitar"].shared = True self.options["pynest2d"].shared = True self.options["cpython"].shared = True + if self._enterprise: + self.options["curaengine"].enable_plugins = False def validate(self): version = self.conf_info.get("user.cura:version", default = self.version, check_type = str)