diff options
author | Kelebek1 <eeeedddccc@hotmail.co.uk> | 2023-01-13 21:06:13 +0000 |
---|---|---|
committer | Kelebek1 <eeeedddccc@hotmail.co.uk> | 2023-01-14 04:43:21 +0000 |
commit | 80a55c1663ac600103e3d475c1f72b04e2e76f0f (patch) | |
tree | ac18dcb7f4714b3324733724edd449c77356345c /src/common/CMakeLists.txt | |
parent | 0e8f98a441400d0dc87425d4c2c26e71e995bdcb (diff) |
Add stacktrace symbol demangling
Diffstat (limited to 'src/common/CMakeLists.txt')
-rw-r--r-- | src/common/CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index 45332cf95..57eec57b5 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt @@ -38,6 +38,7 @@ add_library(common STATIC common_precompiled_headers.h common_types.h concepts.h + demangle.h div_ceil.h dynamic_library.cpp dynamic_library.h @@ -175,7 +176,7 @@ endif() create_target_directory_groups(common) target_link_libraries(common PUBLIC ${Boost_LIBRARIES} fmt::fmt microprofile Threads::Threads) -target_link_libraries(common PRIVATE lz4::lz4 zstd::zstd) +target_link_libraries(common PRIVATE lz4::lz4 zstd::zstd demangle) if (YUZU_USE_PRECOMPILED_HEADERS) target_precompile_headers(common PRIVATE precompiled_headers.h) |