diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2021-06-24 18:37:22 +0300 |
---|---|---|
committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2021-06-24 18:37:22 +0300 |
commit | abf8c4b364bca97d4295797a14f459d85bef1714 (patch) | |
tree | 0c5ef77720e75ada89b03898dd24fc38854a1375 /indra/cmake | |
parent | 9451b50b2b855d6de6cc7141428575c06f46aeb0 (diff) |
SL-10297 windows local build fix
win_crash_logger will be fully removed in D520, for now just fixing local relwithdebinfo build
Diffstat (limited to 'indra/cmake')
-rw-r--r-- | indra/cmake/bugsplat.cmake | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/indra/cmake/bugsplat.cmake b/indra/cmake/bugsplat.cmake index 5f5cc51f63..4edc4c59cd 100644 --- a/indra/cmake/bugsplat.cmake +++ b/indra/cmake/bugsplat.cmake @@ -1,5 +1,10 @@ if (INSTALL_PROPRIETARY) - set(USE_BUGSPLAT ON CACHE BOOL "Use the BugSplat crash reporting system") + # Note that viewer_manifest.py makes decision based on BUGSPLAT_DB and not USE_BUGSPLAT + if (BUGSPLAT_DB) + set(USE_BUGSPLAT ON CACHE BOOL "Use the BugSplat crash reporting system") + else (BUGSPLAT_DB) + set(USE_BUGSPLAT OFF CACHE BOOL "Use the BugSplat crash reporting system") + endif (BUGSPLAT_DB) else (INSTALL_PROPRIETARY) set(USE_BUGSPLAT OFF CACHE BOOL "Use the BugSplat crash reporting system") endif (INSTALL_PROPRIETARY) |