diff options
author | Roxie Linden <roxie@lindenlab.com> | 2024-08-07 16:33:00 -0700 |
---|---|---|
committer | Roxie Linden <roxie@lindenlab.com> | 2024-08-07 16:33:00 -0700 |
commit | 530bc2975315240f6f5dda753b48790364a6312b (patch) | |
tree | 8e0f5ccef0bf306e5add10d95df25afc00cdcb33 /indra | |
parent | e0737b142362e16c78deac38c11bb24ddbe695bc (diff) |
build debug symbols for llwebrtc even for release
Diffstat (limited to 'indra')
-rw-r--r-- | indra/llwebrtc/CMakeLists.txt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/indra/llwebrtc/CMakeLists.txt b/indra/llwebrtc/CMakeLists.txt index c6f77ee848..e3404b3a23 100644 --- a/indra/llwebrtc/CMakeLists.txt +++ b/indra/llwebrtc/CMakeLists.txt @@ -31,7 +31,11 @@ add_library (llwebrtc SHARED ${llwebrtc_SOURCE_FILES}) set_target_properties(llwebrtc PROPERTIES PUBLIC_HEADER llwebrtc.h) if (WINDOWS) - target_link_libraries(llwebrtc PRIVATE ll::webrtc + set_target_properties(llwebrtc + PROPERTIES + LINK_FLAGS "/debug /LARGEADDRESSAWARE" + ) + target_link_libraries(llwebrtc PRIVATE ll::webrtc secur32 winmm dmoguids |