You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
985 B
42 lines
985 B
include(FetchContent)
|
|
set(FETCHCONTENT_QUIET OFF)
|
|
|
|
FetchContent_Declare(glfw
|
|
GIT_REPOSITORY https://github.com/glfw/glfw.git
|
|
GIT_TAG 3.4
|
|
GIT_PROGRESS ON
|
|
)
|
|
|
|
|
|
FetchContent_Declare(glm
|
|
GIT_REPOSITORY https://github.com/g-truc/glm.git
|
|
GIT_TAG 1.0.1
|
|
GIT_PROGRESS ON
|
|
)
|
|
|
|
|
|
FetchContent_Declare(
|
|
vma
|
|
GIT_REPOSITORY https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator.git
|
|
GIT_TAG v3.1.0
|
|
GIT_PROGRESS ON
|
|
FIND_PACKAGE_ARGS 3.1.0)
|
|
|
|
|
|
set(ASSIMP_NO_EXPORT ON)
|
|
set(ASSIMP_BUILD_ALL_IMPORTERS_BY_DEFAULT OFF)
|
|
set(ASSIMP_BUILD_OBJ_IMPORTER ON)
|
|
set(ASSIMP_BUILD_PLY_IMPORTER ON)
|
|
set(ASSIMP_INSTALL OFF)
|
|
set(ASSIMP_BUILD_TESTS OFF)
|
|
FetchContent_Declare(assimp
|
|
GIT_REPOSITORY https://github.com/assimp/assimp.git
|
|
GIT_TAG v5.4.3
|
|
GIT_PROGRESS ON
|
|
)
|
|
|
|
FetchContent_Declare(tetgen
|
|
GIT_REPOSITORY https://github.com/ufz/tetgen.git
|
|
GIT_TAG 1.5.1
|
|
GIT_PROGRESS ON
|
|
) |