Moved initCrashReporting into LLAppViewer, everything we use there is crossplatform enough that duplicating code is silly Removes unused gCrashSettings Adds MBFatalError, that's right, Crash Loop is now translatable! Adds consent notification prompt to first login... enjoy that, everyone.
23 lines
414 B
CMake
23 lines
414 B
CMake
# -*- cmake -*-
|
|
include(Prebuilt)
|
|
include(Variables)
|
|
|
|
if(USE_CRASHPAD)
|
|
|
|
if (USESYSTEMLIBS)
|
|
else (USESYSTEMLIBS)
|
|
use_prebuilt_binary(crashpad)
|
|
if (WINDOWS)
|
|
set(CRASHPAD_LIBRARIES
|
|
debug client.lib util.lib base.lib
|
|
optimized client.lib util.lib base.lib)
|
|
elseif (LINUX)
|
|
|
|
else (DARWIN)
|
|
|
|
endif ()
|
|
set(CRASHPAD_INCLUDE_DIRS ${LIBS_PREBUILT_DIR}/include/crashpad)
|
|
endif (USESYSTEMLIBS)
|
|
|
|
endif()
|