mirror of
https://github.com/allemangD/toddcox-visualize.git
synced 2025-11-10 12:02:47 -05:00
12 lines
332 B
CMake
12 lines
332 B
CMake
FetchContent_Declare(
|
|
glfw
|
|
GIT_REPOSITORY https://github.com/glfw/glfw.git
|
|
GIT_TAG 3.3.6
|
|
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(glfw)
|