Fix cmake template define issue

This commit is contained in:
Joe 2021-07-07 09:48:13 -04:00
parent 478c3b3e0b
commit 82088fa0d7
2 changed files with 1 additions and 5 deletions

View File

@ -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

View File

@ -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.