Initial Commit

Basic window with OpenGL, glad, GLFW, ImGui, and Eigen.
Dependencies are populated with FetchContent, not submodules.
This commit is contained in:
David Allemang
2022-02-07 21:45:09 -05:00
committed by David Allemang
commit 2f17710adb
7 changed files with 235 additions and 0 deletions

10
External/glfw.cmake vendored Normal file
View File

@@ -0,0 +1,10 @@
FetchContent_Declare(
glfw
GIT_REPOSITORY https://github.com/glfw/glfw.git
GIT_TAG 3.3.6
)
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)