Skip to content

Commit

Permalink
[FIX] : fix glfw issue with last version 3.3.8 for github action by c…
Browse files Browse the repository at this point in the history
…heckout the version 3.3. issue related to the GLFW_BUILD_X11 and GLFW_BUILD_WAYLAND both activated but wayland is not available on headless github action
  • Loading branch information
aiekick committed Feb 20, 2024
1 parent cf60dec commit b6756b0
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion 3rdparty/glfw
Submodule glfw updated 172 files
2 changes: 1 addition & 1 deletion ImGuiFileDialog
10 changes: 6 additions & 4 deletions cmake/glfw.cmake
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
option(GLFW_BUILD_DOCS OFF)
option(GLFW_BUILD_EXAMPLES OFF)
option(GLFW_BUILD_TESTS OFF)
option(GLFW_INSTALL OFF)
set(GLFW_BUILD_DOCS OFF CACHE BOOL "" FORCE)
set(GLFW_BUILD_EXAMPLES OFF CACHE BOOL "" FORCE)
set(GLFW_BUILD_TESTS OFF CACHE BOOL "" FORCE)
set(GLFW_BUILD_WAYLAND OFF CACHE BOOL "" FORCE)
set(GLFW_INSTALL OFF CACHE BOOL "" FORCE)

add_subdirectory(${CMAKE_SOURCE_DIR}/3rdparty/glfw)

set_target_properties(glfw PROPERTIES FOLDER 3rdparty) # Override standard 'GLFW3' subfolder
Expand Down

0 comments on commit b6756b0

Please sign in to comment.