8ecbdaf7c0
- 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)
|