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/yaml-cpp.cmake vendored Normal file
View File

@@ -0,0 +1,11 @@
FetchContent_Declare(
yaml-cpp
GIT_REPOSITORY https://github.com/jbeder/yaml-cpp.git
GIT_TAG yaml-cpp-0.7.0
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(yaml-cpp)