diff options
author | Roxie Linden <roxie@lindenlab.com> | 2024-08-18 23:07:29 -0700 |
---|---|---|
committer | Roxie Linden <roxie@lindenlab.com> | 2024-08-18 23:07:29 -0700 |
commit | 226f7bc5b78bbaf13485f2e94b4e185ccd1c5608 (patch) | |
tree | 693ba840c442d1f3e784c75a5b8b14ebf5e6c969 /indra/llwebrtc/CMakeLists.txt | |
parent | 2efad2182a5f6b8404afd9ea363b3a9088de3207 (diff) |
Use the release build of webrtc to avoid pedantic asserts which are handled properly anyway.
Diffstat (limited to 'indra/llwebrtc/CMakeLists.txt')
-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 30aaec1265..a18b716003 100644 --- a/indra/llwebrtc/CMakeLists.txt +++ b/indra/llwebrtc/CMakeLists.txt @@ -31,6 +31,7 @@ add_library (llwebrtc SHARED ${llwebrtc_SOURCE_FILES}) set_target_properties(llwebrtc PROPERTIES PUBLIC_HEADER llwebrtc.h) if (WINDOWS) + cmake_policy(SET CMP0091 NEW) set_target_properties(llwebrtc PROPERTIES LINK_FLAGS "/debug /LARGEADDRESSAWARE" @@ -42,7 +43,10 @@ if (WINDOWS) wmcodecdspuuid msdmo strmiids - iphlpapi) + iphlpapi + libcmt) + # as the webrtc libraries are release, build this binary as release as well. + target_compile_options(llwebrtc PRIVATE "/MT") if (USE_BUGSPLAT) set_target_properties(llwebrtc PROPERTIES PDB_OUTPUT_DIRECTORY "${SYMBOLS_STAGING_DIR}") endif (USE_BUGSPLAT) |