summaryrefslogtreecommitdiff
path: root/indra/cmake/bugsplat.cmake
diff options
context:
space:
mode:
authorNicky <nicky.dasmijn@gmail.com>2022-04-16 18:03:04 +0200
committerNicky <nicky.dasmijn@gmail.com>2022-04-16 18:03:04 +0200
commitcc48def709c2a6eca90c690bd63491011ad68d36 (patch)
treec987e0aa97f479602edb3508694e4ddc1ab84571 /indra/cmake/bugsplat.cmake
parentcf08197ad39679de253e33e5775c45af3fac0cba (diff)
Initialize variables so that calling cmake with "--warn-unused-vars --warn-uninitialized" does
not make it go all crazy.
Diffstat (limited to 'indra/cmake/bugsplat.cmake')
-rw-r--r--indra/cmake/bugsplat.cmake2
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/cmake/bugsplat.cmake b/indra/cmake/bugsplat.cmake
index ce5660aa05..af2d7bd9f2 100644
--- a/indra/cmake/bugsplat.cmake
+++ b/indra/cmake/bugsplat.cmake
@@ -33,5 +33,7 @@ if (USE_BUGSPLAT)
set_target_include_dirs( ll::bugsplat ${LIBS_PREBUILT_DIR}/include/bugsplat)
set_property( TARGET ll::bugsplat APPEND PROPERTY INTERFACE_COMPILE_DEFINITIONS LL_BUGSPLAT)
+else()
+ set(BUGSPLAT_DB "" CACHE STRING "BugSplat crash database name")
endif (USE_BUGSPLAT)