mirror of
https://github.com/Mr-X-GTA/YimMenu.git
synced 2024-12-22 12:07:46 +08:00
74ecf22ecf
* Complete player and network UI redesign, meant to show all features instead of stuffing them into tiny boxes * Added option to delete player vehicles * Better clone player (now clones head blend too) * Better host token spoofing, with an option to enter your own * Better host token spoofing detection * Better desync kick prot detections * A script blocker for the entire session (per-player options will be added later) * Added option to spoof data/DLC hashes * Logging framework that allows developers to easily debug false positives * Major protection improvements
15 lines
366 B
CMake
15 lines
366 B
CMake
include(FetchContent)
|
|
|
|
add_compile_definitions(CXX_FORMAT_SUPPORT)
|
|
|
|
message("AsyncLogger")
|
|
FetchContent_Declare(
|
|
AsyncLogger
|
|
GIT_REPOSITORY https://github.com/Yimura/AsyncLogger.git
|
|
GIT_TAG 6fcfd90b3f4ca4dae09c4a96e9a506e6aea06472
|
|
GIT_PROGRESS TRUE
|
|
)
|
|
FetchContent_MakeAvailable(AsyncLogger)
|
|
|
|
set_property(TARGET AsyncLogger PROPERTY CXX_STANDARD 23)
|