2024-06-18 13:25:20 +08:00
|
|
|
include(FetchContent)
|
|
|
|
FetchContent_Declare(
|
|
|
|
spdlog
|
2024-08-21 11:07:22 +08:00
|
|
|
GIT_REPOSITORY http://212.129.155.29:3000/gitMirror/spdlog.git
|
2024-06-18 13:25:20 +08:00
|
|
|
SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/external/spdlog
|
2024-08-21 11:07:22 +08:00
|
|
|
GIT_TAG main
|
2024-06-18 13:25:20 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
FetchContent_MakeAvailable(spdlog)
|