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-07-01 08:00:34 +0300
committerJelle Spijker <j.spijker@ultimaker.com>2022-07-01 08:00:34 +0300
commitf5789433ce0c2085769e9443a64d617b58045fc5 (patch)
treeb4ee4267d7aea7e2df6e94f2d249aa3468ff4cf5 /conanfile.py
parent87a521159e683db20b20794777c31f018bbf1358 (diff)
Add target architecture for Macos
We should extend this Arm support in the future Contributes to CURA-9365
Diffstat (limited to 'conanfile.py')
-rw-r--r--conanfile.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/conanfile.py b/conanfile.py
index 4db9bbaef7..56c784e5ed 100644
--- a/conanfile.py
+++ b/conanfile.py
@@ -190,7 +190,8 @@ class CuraConan(ConanFile):
icon = icon_path,
entitlements_file = entitlements_file,
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"),
+ target_arch = "x86_64" if self.settings.os == "Macos" else "None" # FIXME: Make this dependent on the settings.arch_target
))
def source(self):