Change dependency management

This commit is contained in:
2020-11-22 11:12:13 +01:00
parent 02232b17ef
commit aec792fc65
16 changed files with 91 additions and 43 deletions

12
3rdParty/assimp/CMakeLists.txt vendored Normal file
View File

@@ -0,0 +1,12 @@
include(FetchContent)
FetchContent_Declare(
assimp
GIT_REPOSITORY https://github.com/assimp/assimp.git
GIT_TAG v5.0.1
GIT_SHALLOW TRUE
)
set(ASSIMP_BUILD_TESTS OFF)
set(ASSIMP_BUILD_SAMPLES OFF)
set(ASSIMP_INSTALL OFF)
FetchContent_MakeAvailable(assimp)