File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -5,14 +5,15 @@ if (INSTALL_PROPRIETARY AND NOT LINUX)
5
5
else (BUGSPLAT_DB )
6
6
set (USE_BUGSPLAT OFF CACHE BOOL "Use the BugSplat crash reporting system" )
7
7
endif (BUGSPLAT_DB )
8
- else (INSTALL_PROPRIETARY AND NOT LINUX )
8
+ else ()
9
9
set (USE_BUGSPLAT OFF CACHE BOOL "Use the BugSplat crash reporting system" )
10
- endif (INSTALL_PROPRIETARY AND NOT LINUX )
10
+ set (BUGSPLAT_DB "" CACHE STRING "BugSplat crash database name" )
11
+ endif ()
11
12
12
13
include_guard ()
13
14
add_library ( ll::bugsplat INTERFACE IMPORTED )
14
15
15
- if (USE_BUGSPLAT )
16
+ if (USE_BUGSPLAT AND NOT LINUX )
16
17
include (Prebuilt )
17
18
use_prebuilt_binary (bugsplat )
18
19
if (WINDOWS )
@@ -36,6 +37,7 @@ if (USE_BUGSPLAT)
36
37
37
38
set_property ( TARGET ll::bugsplat APPEND PROPERTY INTERFACE_COMPILE_DEFINITIONS LL_BUGSPLAT )
38
39
else ()
40
+ set (USE_BUGSPLAT OFF CACHE BOOL "Use the BugSplat crash reporting system" FORCE )
39
41
set (BUGSPLAT_DB "" CACHE STRING "BugSplat crash database name" FORCE )
40
- endif (USE_BUGSPLAT )
42
+ endif ()
41
43
You can’t perform that action at this time.
0 commit comments