12 lines
218 B
CMake
12 lines
218 B
CMake
include(FetchContent)
|
|
|
|
FetchContent_Declare(
|
|
spdlog
|
|
GIT_REPOSITORY https://github.com/gabime/spdlog
|
|
GIT_TAG v1.x
|
|
)
|
|
|
|
FetchContent_MakeAvailable(spdlog)
|
|
list(APPEND CMAKE_MODULE_PATH ${spdlog_SOURCE_DIR}/extras)
|
|
|