Fix cmake template define issue

pull/646/head
Joe 3 years ago
parent 478c3b3e0b
commit 82088fa0d7
  1. 4
      cmake/nheko.h
  2. 2
      src/main.cpp

@ -4,6 +4,4 @@ constexpr auto build_os = "${CMAKE_HOST_SYSTEM_NAME}";
constexpr auto enable_debug_log = ${SPDLOG_DEBUG_ON}; constexpr auto enable_debug_log = ${SPDLOG_DEBUG_ON};
} }
// clang-format off # cmakedefine01 HAVE_BACKTRACE_SYMBOLS_FD
#define HAVE_BACKTRACE_SYMBOLS_FD ${HAVE_BACKTRACE_SYMBOLS_FD}
// clang-format on

@ -40,7 +40,6 @@
QQmlDebuggingEnabler enabler; QQmlDebuggingEnabler enabler;
#endif #endif
#if !defined(Q_OS_WINDOWS)
#if HAVE_BACKTRACE_SYMBOLS_FD #if HAVE_BACKTRACE_SYMBOLS_FD
#include <csignal> #include <csignal>
#include <execinfo.h> #include <execinfo.h>
@ -93,7 +92,6 @@ registerSignalHandlers()
std::signal(SIGABRT, &stacktraceHandler); std::signal(SIGABRT, &stacktraceHandler);
} }
#endif
#else #else
// No implementation for systems with no stacktrace support. // No implementation for systems with no stacktrace support.

Loading…
Cancel
Save