Files
OpenVulkano/3rdParty/fmt/CMakeLists.txt
2025-06-23 01:11:22 +02:00

15 lines
282 B
CMake

include(FetchContent)
if(NOT DEFINED FMT_REPO)
set(FMT_REPO https://github.com/fmtlib/fmt)
endif ()
FetchContent_Declare(
fmt
EXCLUDE_FROM_ALL
GIT_REPOSITORY ${FMT_REPO}
GIT_TAG master
GIT_SHALLOW TRUE
)
FetchContent_MakeAvailable(fmt)