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.
11 lines
310 B
CMake
11 lines
310 B
CMake
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)
|