Move crash handler to networking library.

Turns out dependencies just don't work out well otherwise.
This commit is contained in:
Dale Glass 2023-07-02 22:10:27 +02:00
parent 25755f9c88
commit 441413020e
12 changed files with 10 additions and 17 deletions

View file

@ -19,7 +19,7 @@ link_hifi_libraries(
audio avatars octree gpu graphics shaders model-serializers hfm entities
networking animation recording shared script-engine embedded-webserver
controllers physics plugins midi image
material-networking model-networking ktx shaders monitoring
material-networking model-networking ktx shaders
)
include_hifi_library_headers(procedural)

View file

@ -30,7 +30,7 @@ symlink_or_copy_directory_beside_target(${_SHOULD_SYMLINK_RESOURCES} "${CMAKE_CU
include_hifi_library_headers(gpu)
include_hifi_library_headers(graphics)
include_hifi_library_headers(script-engine)
link_hifi_libraries(embedded-webserver networking shared avatars octree monitoring)
link_hifi_libraries(embedded-webserver networking shared avatars octree)
target_zlib()
target_quazip()

View file

@ -230,7 +230,7 @@ link_hifi_libraries(
${PLATFORM_GL_BACKEND}
# Plaform specific input & display plugin libraries
${PLATFORM_PLUGIN_LIBRARIES}
shaders monitoring
shaders
)
include_hifi_library_headers(script-engine)

View file

@ -1,10 +0,0 @@
set(TARGET_NAME monitoring)
setup_hifi_library()
link_hifi_libraries(shared)
add_crashpad()
target_breakpad()
if (WIN32)
add_compile_definitions(_USE_MATH_DEFINES)
endif()

View file

@ -1,9 +1,11 @@
set(TARGET_NAME networking)
setup_hifi_library(Network WebSockets)
link_hifi_libraries(shared platform monitoring)
link_hifi_libraries(shared platform)
target_openssl()
target_tbb()
add_crashpad()
target_breakpad()
if (WIN32 OR (UNIX AND NOT APPLE))
target_webrtc()

View file

@ -17,7 +17,7 @@
#include <QtCore/QStandardPaths>
#include <QtCore/QDir>
#include <QJsonObject>
#include <crash-handler/CrashHandler.h>
#include "crash-handler/CrashHandler.h"
#include "udt/PacketHeaders.h"

View file

@ -41,9 +41,10 @@ Q_LOGGING_CATEGORY(crash_handler, "overte.crash_handler")
#endif
#include <BuildInfo.h>
#include <FingerprintUtils.h>
#include "../FingerprintUtils.h"
#include "../UserActivityLogger.h"
#include <UUID.h>
#include <UserActivityLogger.h>
static const std::string BACKTRACE_URL{ CMAKE_BACKTRACE_URL };