COMP: Use fetchcontent for vendor dependencies.

Remove git submodules entirely.
This commit is contained in:
David Allemang
2023-01-26 14:22:20 -05:00
parent baec48ecd7
commit b7be8dc093
15 changed files with 54 additions and 8002 deletions

11
vendor/glfw.cmake vendored Normal file
View File

@@ -0,0 +1,11 @@
FetchContent_Declare(
glfw
GIT_REPOSITORY https://github.com/glfw/glfw.git
GIT_TAG 3.3.6
GIT_PROGRESS TRUE
)
set(GLFW_BUILD_EXAMPLES OFF CACHE INTERNAL "")
set(GLFW_BUILD_TESTS OFF CACHE INTERNAL "")
set(GLFW_BUILD_DOCS OFF CACHE INTERNAL "")
set(GLFW_INSTALL OFF CACHE INTERNAL "")
FetchContent_MakeAvailable(glfw)