Update dependency management

This commit is contained in:
2023-11-28 09:28:11 +01:00
parent f83a56b17f
commit 03a9f219cc
11 changed files with 49 additions and 19 deletions

14
3rdParty/fmt/CMakeLists.txt vendored Normal file
View File

@@ -0,0 +1,14 @@
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 10.1.0
GIT_SHALLOW TRUE
)
FetchContent_MakeAvailable(fmt)