Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions cmake/glfw.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ else()
set(GLFW_BUILD_TESTS OFF CACHE BOOL "Build the GLFW test programs")
set(GLFW_BUILD_DOCS OFF CACHE BOOL "Build the GLFW documentation")
set(GLFW_INSTALL OFF CACHE BOOL "Generate installation target")
# Select Windowing subsystem
option(TANGRAM_USE_WAYLAND "Use Wayland for Linux windowing system" OFF)
option(TANGRAM_USE_X11 "Use x11 for Linux windowing system" ON)
set(GLFW_BUILD_WAYLAND ${TANGRAM_USE_WAYLAND})
set(GLFW_BUILD_X11 ${TANGRAM_USE_X11})
add_subdirectory(platforms/common/glfw)
if(APPLE)
# Turn off noisy warnings from clang on macOS.
Expand Down
2 changes: 1 addition & 1 deletion platforms/common/glfw
Submodule glfw updated 179 files