[nostalgia] Fix non-Linux non-Apple systems not to build GLFW for Wayland
All checks were successful
Build / build (push) Successful in 2m34s

This commit is contained in:
Gary Talent 2024-05-31 19:54:08 -05:00
parent 3fba36b4a8
commit 9244b735e8

View File

@ -52,6 +52,9 @@ if(NOT BUILDCORE_TARGET STREQUAL "gba")
set(GLFW_BUILD_EXAMPLES OFF)
set(GLFW_BUILD_TESTS OFF)
set(GLFW_BUILD_DOCS OFF)
if(${CMAKE_SYSTEM_NAME} STREQUAL "Linux")
set(GLFW_BUILD_WAYLAND OFF)
endif()
add_subdirectory(deps/glfw)
add_subdirectory(deps/glutils)
add_subdirectory(deps/imgui)