mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-12 06:28:59 +08:00
Set strip to True for Mac and Linux
Contributes to CURA-9365
This commit is contained in:
parent
f5789433ce
commit
dec5609459
@ -38,7 +38,7 @@ exe = EXE(
|
||||
name=r'{{ name }}',
|
||||
debug=False,
|
||||
bootloader_ignore_signals=False,
|
||||
strip=False,
|
||||
strip={{ strip }},
|
||||
upx={{ upx }},
|
||||
console=False,
|
||||
disable_windowed_traceback=False,
|
||||
|
@ -191,6 +191,7 @@ class CuraConan(ConanFile):
|
||||
entitlements_file = entitlements_file,
|
||||
osx_bundle_identifier = "nl.ultimaker.cura.dmg" if self.settings.os == "Macos" else "None",
|
||||
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
|
||||
))
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user