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
diff options
context:
space:
mode:
authorj.spijker@ultimaker.com <jelle spijker>2022-06-25 19:40:27 +0300
committerJelle Spijker <spijker.jelle@gmail.com>2022-06-25 19:40:27 +0300
commit5f6d59c63d3ac3936bc1afd51640fad84037dcf9 (patch)
tree3aceda20aee65420a4468f1346a1dd1dec91c476 /conanfile.py
parent30135072de359f6a3c36bb76b1261c003d14aec3 (diff)
Only build Arcus, Savitar and pynest2d shared
Contributes to CURA-9365
Diffstat (limited to 'conanfile.py')
-rw-r--r--conanfile.py17
1 files changed, 3 insertions, 14 deletions
diff --git a/conanfile.py b/conanfile.py
index 4a48394e47..3614b342f9 100644
--- a/conanfile.py
+++ b/conanfile.py
@@ -84,20 +84,9 @@ class CuraConan(ConanFile):
return ["requirements.txt", "requirements-ultimaker.txt"]
def configure(self):
- self.options["*"].shared = True
- self.options["bzip2"].shared = False
- self.options["expat"].shared = False
- self.options["openssl"].shared = False
- self.options["sqlite3"].shared = False
- self.options["tcl"].shared = False
- self.options["tk"].shared = False
- self.options["xz_utils"].shared = False
- self.options["zlib"].shared = False
- if self.settings.os == "Windows":
- # Needed to compile CPython on Windows with our configuration for Visual Studio
- self.options["mpdecimal"].cxx = True
- self.options["mpdecimal"].shared = False
- self.options["libffi"].shared = False
+ self.options["arcus"].shared = True
+ self.options["savitar"].shared = True
+ self.options["pynest2d"].shared = True
def validate(self):
if self.version and tools.Version(self.version) <= tools.Version("4"):