summaryrefslogtreecommitdiffstats
path: root/deps/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'deps/CMakeLists.txt')
-rw-r--r--deps/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/deps/CMakeLists.txt b/deps/CMakeLists.txt
index aadf8ef..c8c4b52 100644
--- a/deps/CMakeLists.txt
+++ b/deps/CMakeLists.txt
@@ -38,7 +38,7 @@ endfunction()
set(PHYSFS_ARCHIVE_ZIP ON CACHE BOOL "" FORCE)
set(PHYSFS_ARCHIVE_7Z ON CACHE BOOL "" FORCE)
-find_package(glfw3 3.3 QUIET)
+find_package(glfw3 3.4 QUIET)
if(NOT glfw3_FOUND)
include(FetchContent)
@@ -46,7 +46,7 @@ if(NOT glfw3_FOUND)
set(GLFW_BUILD_DOCS OFF CACHE BOOL "" FORCE)
set(GLFW_BUILD_TESTS OFF CACHE BOOL "" FORCE)
set(GLFW_BUILD_EXAMPLES OFF CACHE BOOL "" FORCE)
- FetchContent_Declare(glfw GIT_REPOSITORY https://github.com/glfw/glfw.git GIT_TAG 3.3)
+ FetchContent_Declare(glfw GIT_REPOSITORY https://github.com/glfw/glfw.git GIT_TAG 3.4)
FetchContent_MakeAvailable(glfw)
add_library(glfw3 ALIAS glfw)
endif()