We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d81ab25 commit c6dbe16Copy full SHA for c6dbe16
conanfile.py
@@ -43,9 +43,6 @@ class CuraEngineConan(ConanFile):
43
"with_cura_resources": False,
44
}
45
46
- @property
47
- def _min_cppstd(self):
48
- return 20
49
50
@property
51
def _compilers_minimum_version(self):
@@ -97,6 +94,9 @@ def configure(self):
97
94
self.options["protobuf"].shared = False
98
95
if self.options.enable_arcus:
99
96
self.options["arcus"].shared = True
+ # ARM64 Windows: Disable tbbproxy (not available on ARM64 platforms)
+ if self.settings.os == "Windows" and self.settings.arch == "armv8":
+ self.options["onetbb"].tbbproxy = False
100
# Force all libraries to be static for Emscripten builds
101
if self.settings.os == "Emscripten":
102
self.options["*"].shared = False
0 commit comments