summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErik Kundiman <erik@megapahit.org>2026-05-16 19:06:43 +0800
committerErik Kundiman <erik@megapahit.org>2026-05-16 19:06:43 +0800
commit038ac8ea747b680b73bbce6a5a426abcd8132e22 (patch)
treec68d1c1997485dbfc223992d2ca3576103d63b6a
parent5ac3c3881ed82c102a302b87c59b70201ec78a9c (diff)
Fix commit e2bbc96a057eaacf8bfbc6614c156634a7697ee0
The previous would make none compile WebRTC code in llvoiceclient.cpp.
-rw-r--r--indra/newview/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/CMakeLists.txt b/indra/newview/CMakeLists.txt
index 90a62bce79..7ef6bb8e6f 100644
--- a/indra/newview/CMakeLists.txt
+++ b/indra/newview/CMakeLists.txt
@@ -2205,7 +2205,7 @@ target_link_libraries(${VIEWER_BINARY_NAME}
)
if (NOT (CMAKE_SYSTEM_NAME MATCHES FreeBSD OR ($ENV{MSYSTEM_CARCH} MATCHES aarch64) OR (${LINUX_DISTRO} MATCHES gentoo) OR (${LINUX_DISTRO} MATCHES debian AND CMAKE_SYSTEM_PROCESSOR MATCHES aarch64)))
- target_compile_definitions(${VIEWER_BINARY_NAME} INTERFACE USE_WEBRTC=1)
+ target_compile_definitions(${VIEWER_BINARY_NAME} PRIVATE USE_WEBRTC=1)
target_link_libraries(${VIEWER_BINARY_NAME} llwebrtc )
endif ()