mp-sfml/cmake_modules/spdlog.cmake

10 lines
230 B
CMake
Raw Normal View History

include(FetchContent)
FetchContent_Declare(
spdlog
GIT_REPOSITORY http://212.129.155.29:3000/gitMirror/spdlog.git
SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/external/spdlog
GIT_TAG main
)
FetchContent_MakeAvailable(spdlog)