Allow usage of mirrors for all dependencies

This commit is contained in:
2023-10-29 19:02:11 +01:00
parent a6b31d69be
commit 45cb095561
17 changed files with 111 additions and 24 deletions

View File

@@ -1,9 +1,13 @@
include(FetchContent)
if(NOT DEFINED ASSIMP_REPO)
set(ASSIMP_REPO https://github.com/assimp/assimp.git)
endif ()
FetchContent_Declare(
assimp
EXCLUDE_FROM_ALL
GIT_REPOSITORY https://github.com/assimp/assimp.git
GIT_REPOSITORY ${ASSIMP_REPO}
GIT_TAG v5.0.1
GIT_SHALLOW TRUE
)