mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-25 15:44:04 -06:00
Only build Arcus, Savitar and pynest2d shared
Contributes to CURA-9365
This commit is contained in:
parent
30135072de
commit
5f6d59c63d
2 changed files with 3 additions and 31 deletions
|
@ -8,10 +8,6 @@
|
||||||
- "fdm_materials/(latest)@ultimaker/stable"
|
- "fdm_materials/(latest)@ultimaker/stable"
|
||||||
- "cura_binary_data/(latest)@ultimaker/stable"
|
- "cura_binary_data/(latest)@ultimaker/stable"
|
||||||
- "cpython/3.10.4"
|
- "cpython/3.10.4"
|
||||||
- "libffi/3.2.1"
|
|
||||||
- "mpdecimal/2.5.0"
|
|
||||||
- "tcl/8.6.10"
|
|
||||||
- "tk/8.6.10"
|
|
||||||
runinfo:
|
runinfo:
|
||||||
entrypoint: "cura_app.py"
|
entrypoint: "cura_app.py"
|
||||||
pyinstaller:
|
pyinstaller:
|
||||||
|
@ -84,10 +80,6 @@
|
||||||
- "fdm_materials/5.1.0"
|
- "fdm_materials/5.1.0"
|
||||||
- "cura_binary_data/5.1.0"
|
- "cura_binary_data/5.1.0"
|
||||||
- "cpython/3.10.4"
|
- "cpython/3.10.4"
|
||||||
- "libffi/3.2.1"
|
|
||||||
- "mpdecimal/2.5.0"
|
|
||||||
- "tcl/8.6.10"
|
|
||||||
- "tk/8.6.10"
|
|
||||||
runinfo:
|
runinfo:
|
||||||
entrypoint: "cura_app.py"
|
entrypoint: "cura_app.py"
|
||||||
pyinstaller:
|
pyinstaller:
|
||||||
|
@ -160,10 +152,6 @@
|
||||||
- "fdm_materials/(latest)@ultimaker/stable"
|
- "fdm_materials/(latest)@ultimaker/stable"
|
||||||
- "cura_binary_data/(latest)@ultimaker/stable"
|
- "cura_binary_data/(latest)@ultimaker/stable"
|
||||||
- "cpython/3.10.4"
|
- "cpython/3.10.4"
|
||||||
- "libffi/3.2.1"
|
|
||||||
- "mpdecimal/2.5.0"
|
|
||||||
- "tcl/8.6.10"
|
|
||||||
- "tk/8.6.10"
|
|
||||||
runinfo:
|
runinfo:
|
||||||
entrypoint: "cura_app.py"
|
entrypoint: "cura_app.py"
|
||||||
pyinstaller:
|
pyinstaller:
|
||||||
|
@ -236,11 +224,6 @@
|
||||||
- "fdm_materials/(latest)@ultimaker/cura_9365"
|
- "fdm_materials/(latest)@ultimaker/cura_9365"
|
||||||
- "cura_binary_data/(latest)@ultimaker/cura_9365"
|
- "cura_binary_data/(latest)@ultimaker/cura_9365"
|
||||||
- "cpython/3.10.4"
|
- "cpython/3.10.4"
|
||||||
- "libffi/3.2.1"
|
|
||||||
- "mpdecimal/2.5.0"
|
|
||||||
- "tcl/8.6.10"
|
|
||||||
- "tk/8.6.10"
|
|
||||||
- "zlib/1.2.12"
|
|
||||||
runinfo:
|
runinfo:
|
||||||
entrypoint: "cura_app.py"
|
entrypoint: "cura_app.py"
|
||||||
pyinstaller:
|
pyinstaller:
|
||||||
|
|
17
conanfile.py
17
conanfile.py
|
@ -84,20 +84,9 @@ class CuraConan(ConanFile):
|
||||||
return ["requirements.txt", "requirements-ultimaker.txt"]
|
return ["requirements.txt", "requirements-ultimaker.txt"]
|
||||||
|
|
||||||
def configure(self):
|
def configure(self):
|
||||||
self.options["*"].shared = True
|
self.options["arcus"].shared = True
|
||||||
self.options["bzip2"].shared = False
|
self.options["savitar"].shared = True
|
||||||
self.options["expat"].shared = False
|
self.options["pynest2d"].shared = True
|
||||||
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
|
|
||||||
|
|
||||||
def validate(self):
|
def validate(self):
|
||||||
if self.version and tools.Version(self.version) <= tools.Version("4"):
|
if self.version and tools.Version(self.version) <= tools.Version("4"):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue