mirror of
https://github.com/allemangD/toddcox-visualize.git
synced 2025-11-10 12:02:47 -05:00
Basic window with OpenGL, glad, GLFW, ImGui, and Eigen. Dependencies are populated with FetchContent, not submodules.
10 lines
274 B
CMake
10 lines
274 B
CMake
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)
|