Skip to content
Snippets Groups Projects
Commit 82088fa0 authored by Joe Donofry's avatar Joe Donofry
Browse files

Fix cmake template define issue

parent 478c3b3e
No related branches found
No related tags found
No related merge requests found
Pipeline #1332 passed
......@@ -4,6 +4,4 @@ constexpr auto build_os = "${CMAKE_HOST_SYSTEM_NAME}";
constexpr auto enable_debug_log = ${SPDLOG_DEBUG_ON};
}
// clang-format off
#define HAVE_BACKTRACE_SYMBOLS_FD ${HAVE_BACKTRACE_SYMBOLS_FD}
// clang-format on
# cmakedefine01 HAVE_BACKTRACE_SYMBOLS_FD
......@@ -40,7 +40,6 @@
QQmlDebuggingEnabler enabler;
#endif
#if !defined(Q_OS_WINDOWS)
#if HAVE_BACKTRACE_SYMBOLS_FD
#include <csignal>
#include <execinfo.h>
......@@ -93,7 +92,6 @@ registerSignalHandlers()
std::signal(SIGABRT, &stacktraceHandler);
}
#endif
#else
// No implementation for systems with no stacktrace support.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment