Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,9 @@ def configure(self):
self.options["protobuf"].shared = False
if self.options.enable_arcus:
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
# Force all libraries to be static for Emscripten builds
if self.settings.os == "Emscripten":
self.options["*"].shared = False
Expand Down
Loading