mirror of
https://github.com/Mr-X-GTA/YimMenu.git
synced 2024-12-22 20:17:24 +08:00
c4a85050a6
* feat(exception_handler): skip certain exception codes * feat(zydis): Disable BUILD_DOXYGEN and FEATURE_ENCODER * feat(cmake): link dbghelp * feat(exception_handler): implement stack dumper * feat(logger): differentiate between wine and non-wine * feat(logger): add NO_COLOR env var support * fix(logger): fix wine logging (#960) * feat(exception_handler): added string logging of exception * fix(logger): exception access violation NO_COLOR -------- Co-authored-by: Aure7138 <100095051+Aure7138@users.noreply.github.com> Co-authored-by: tupoy-ya <72797377+tupoy-ya@users.noreply.github.com>
13 lines
287 B
CMake
13 lines
287 B
CMake
include(FetchContent)
|
|
|
|
message("AsyncLogger")
|
|
FetchContent_Declare(
|
|
AsyncLogger
|
|
GIT_REPOSITORY https://github.com/Yimura/AsyncLogger.git
|
|
GIT_TAG v0.0.5
|
|
GIT_PROGRESS TRUE
|
|
)
|
|
FetchContent_MakeAvailable(AsyncLogger)
|
|
|
|
set_property(TARGET AsyncLogger PROPERTY CXX_STANDARD 23)
|