mirror of
https://github.com/Mr-X-GTA/YimMenu.git
synced 2024-12-22 20:17:24 +08:00
9a1a75b675
- Move cmake files to dedicated cmake folder - Move scattered python files to `scripts/` folder - Update CMakeLists.txt to reflect changes * feat(scripts): add README to folder
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.6
|
|
GIT_PROGRESS TRUE
|
|
)
|
|
FetchContent_MakeAvailable(AsyncLogger)
|
|
|
|
set_property(TARGET AsyncLogger PROPERTY CXX_STANDARD 23)
|