diff options
| author | Roxanne Skelly <roxie@lindenlab.com> | 2026-07-17 14:41:18 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-07-17 14:41:18 -0700 |
| commit | e9fd0450e92c569640a462baecabb89dfd537571 (patch) | |
| tree | 02f89fd69dcc78476aac2502a4afb7e010626045 /indra | |
| parent | 402f28677e5f10edbb8bdddbeead1662e0374344 (diff) | |
| parent | f5f1579090d61edc67b6ec35f76a741171cbfa6b (diff) | |
Merge pull request #6007 from secondlife/roxie/fix-audio-ducking
Fix audio level ducking of applications when viewer webrtc is enabled.
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/llwebrtc/CMakeLists.txt | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/indra/llwebrtc/CMakeLists.txt b/indra/llwebrtc/CMakeLists.txt index eb10f4eee4..9d5cde0e6a 100644 --- a/indra/llwebrtc/CMakeLists.txt +++ b/indra/llwebrtc/CMakeLists.txt @@ -47,7 +47,14 @@ if (WINDOWS) set_target_properties(llwebrtc PROPERTIES PDB_OUTPUT_DIRECTORY "${SYMBOLS_STAGING_DIR}") endif (USE_BUGSPLAT) elseif (DARWIN) - target_link_libraries(llwebrtc PRIVATE ll::webrtc) + target_link_libraries(llwebrtc PRIVATE ll::webrtc + "-framework AVFoundation" + "-framework AudioToolbox" + "-framework CoreAudio" + "-framework CoreMedia" + "-framework CoreVideo" + "-framework Foundation" + ) if (USE_BUGSPLAT) set_target_properties(llwebrtc PROPERTIES XCODE_ATTRIBUTE_DEBUG_INFORMATION_FORMAT "dwarf-with-dsym" XCODE_ATTRIBUTE_DWARF_DSYM_FOLDER_PATH "${SYMBOLS_STAGING_DIR}/dSYMs") |
