Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Wayland Support #2334

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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