Set strip to True for Mac and Linux

Contributes to CURA-9365
This commit is contained in:
j.spijker@ultimaker.com 2022-07-01 07:09:31 +02:00 committed by Jelle Spijker
parent f5789433ce
commit dec5609459
2 changed files with 2 additions and 1 deletions

View file

@ -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
))