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

9
External/eigen.cmake vendored Normal file
View File

@@ -0,0 +1,9 @@
FetchContent_Declare(
eigen
GIT_REPOSITORY https://gitlab.com/libeigen/eigen.git
GIT_TAG 3.4
)
set(EIGEN_BUILD_DOC OFF CACHE INTERNAL "")
set(BUILD_TESTING OFF CACHE INTERNAL "")
set(EIGEN_BUILD_PKGCONFIG OFF CACHE INTERNAL "")
FetchContent_MakeAvailable(eigen)