diff options
author | Erik Kundiman <erik@megapahit.org> | 2025-06-12 00:29:47 +0800 |
---|---|---|
committer | Erik Kundiman <erik@megapahit.org> | 2025-06-12 00:29:47 +0800 |
commit | 0c6dad371514dd004d936ad0f73f7c2a38f10fb5 (patch) | |
tree | 293ab176dac0d0755dd3a73fbc582ebf72fbe576 /indra/CMakeLists.txt | |
parent | f1fa6c55b57b188d3c84711f51a2499a98b9b9e8 (diff) |
Exclude Windows arm64 from WebRTC
Crow Misia's libwebrtc-bin, the one we've been relying on for WebRTC
binaries, doesn't seem to be providing Windows arm64 binaries yet.
Diffstat (limited to 'indra/CMakeLists.txt')
-rw-r--r-- | indra/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/CMakeLists.txt b/indra/CMakeLists.txt index b1970fba35..85591782f2 100644 --- a/indra/CMakeLists.txt +++ b/indra/CMakeLists.txt @@ -59,7 +59,7 @@ add_subdirectory(${LIBS_OPEN_PREFIX}llmessage) add_subdirectory(${LIBS_OPEN_PREFIX}llprimitive) add_subdirectory(${LIBS_OPEN_PREFIX}llrender) add_subdirectory(${LIBS_OPEN_PREFIX}llfilesystem) -if (NOT CMAKE_SYSTEM_NAME MATCHES FreeBSD) +if (NOT (CMAKE_SYSTEM_NAME MATCHES FreeBSD OR $ENV{MSYSTEM_CARCH} MATCHES aarch64)) add_subdirectory(${LIBS_OPEN_PREFIX}llwebrtc) endif () add_subdirectory(${LIBS_OPEN_PREFIX}llwindow) |