mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-13 14:05:45 -04:00
CrashHandler: Use libbacktrace
This commit is contained in:
@ -76,6 +76,10 @@ if(USE_SDL2)
|
||||
endif()
|
||||
if(NOT WIN32 AND NOT ANDROID)
|
||||
find_package(CURL REQUIRED)
|
||||
find_package(Libbacktrace)
|
||||
if(NOT LIBBACKTRACE_FOUND)
|
||||
message(WARNING "libbacktrace not found, crashes will not produce backtraces.")
|
||||
endif()
|
||||
endif()
|
||||
if(BUILD_QT_FRONTEND)
|
||||
find_package(Qt6 6.5.1 COMPONENTS Core Gui Widgets Network LinguistTools REQUIRED)
|
||||
|
Reference in New Issue
Block a user