diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2021-06-30 15:01:41 +0200 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2021-06-30 15:01:41 +0200 |
commit | 9f7064676c238585713144d9b52b8aa789eb9fd0 (patch) | |
tree | d503b15755c14d1433126a9da5a7965b1dbe6188 /cmake/nheko.h | |
parent | Update mtxclient and add coeurl to flatpak (diff) | |
download | nheko-9f7064676c238585713144d9b52b8aa789eb9fd0.tar.xz |
Get rid of boost dependency for stacktraces
Diffstat (limited to 'cmake/nheko.h')
-rw-r--r-- | cmake/nheko.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/cmake/nheko.h b/cmake/nheko.h index bf1a54fe..c2329917 100644 --- a/cmake/nheko.h +++ b/cmake/nheko.h @@ -1,6 +1,9 @@ namespace nheko { constexpr auto version = "${PROJECT_VERSION}"; -constexpr auto build_user = "${BUILD_USER}@${BUILD_HOST}"; 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 |