summaryrefslogtreecommitdiffstats
path: root/deps
diff options
context:
space:
mode:
authoruntodesu <kirill@untode.su>2025-05-15 00:10:15 +0500
committeruntodesu <kirill@untode.su>2025-05-15 00:10:15 +0500
commit29da2327c990ef0ad4347b0067f4556030bbb3dc (patch)
tree7c326de5ffaefa46bab9bb82cbd21410b8f27e16 /deps
parent252ee54819888e4699510aa33d66493262d7661e (diff)
downloadvoxelius-29da2327c990ef0ad4347b0067f4556030bbb3dc.tar.bz2
voxelius-29da2327c990ef0ad4347b0067f4556030bbb3dc.zip
Update GLFW because I got a newer CMake now
Diffstat (limited to 'deps')
-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()