mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-15 10:47:49 -06:00
Set strip to True for Mac and Linux
Contributes to CURA-9365
This commit is contained in:
parent
f5789433ce
commit
dec5609459
2 changed files with 2 additions and 1 deletions
|
@ -38,7 +38,7 @@ exe = EXE(
|
||||||
name=r'{{ name }}',
|
name=r'{{ name }}',
|
||||||
debug=False,
|
debug=False,
|
||||||
bootloader_ignore_signals=False,
|
bootloader_ignore_signals=False,
|
||||||
strip=False,
|
strip={{ strip }},
|
||||||
upx={{ upx }},
|
upx={{ upx }},
|
||||||
console=False,
|
console=False,
|
||||||
disable_windowed_traceback=False,
|
disable_windowed_traceback=False,
|
||||||
|
|
|
@ -191,6 +191,7 @@ class CuraConan(ConanFile):
|
||||||
entitlements_file = entitlements_file,
|
entitlements_file = entitlements_file,
|
||||||
osx_bundle_identifier = "nl.ultimaker.cura.dmg" if self.settings.os == "Macos" else "None",
|
osx_bundle_identifier = "nl.ultimaker.cura.dmg" if self.settings.os == "Macos" else "None",
|
||||||
upx = str(self.settings.os == "Windows"),
|
upx = str(self.settings.os == "Windows"),
|
||||||
|
strip = str(self.settings.os != "Windows"),
|
||||||
target_arch = "x86_64" if self.settings.os == "Macos" else "None" # FIXME: Make this dependent on the settings.arch_target
|
target_arch = "x86_64" if self.settings.os == "Macos" else "None" # FIXME: Make this dependent on the settings.arch_target
|
||||||
))
|
))
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue