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-23 13:58:09 +0300
committerJelle Spijker <j.spijker@ultimaker.com>2022-06-23 13:58:09 +0300
commit30135072de359f6a3c36bb76b1261c003d14aec3 (patch)
tree5d24edbf384b731c706c0c903c64706e28fdc5f0 /conanfile.py
parentf58389d59914aa406b698937c1be99a89e3301b4 (diff)
Compile cpython dependencies statically
Contributes to CURA-9365
Diffstat (limited to 'conanfile.py')
-rw-r--r--conanfile.py10
1 files changed, 9 insertions, 1 deletions
diff --git a/conanfile.py b/conanfile.py
index e4ada61bed..4a48394e47 100644
--- a/conanfile.py
+++ b/conanfile.py
@@ -85,8 +85,16 @@ class CuraConan(ConanFile):
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 voor Visual Studio
+ # 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