summaryrefslogtreecommitdiffhomepage
path: root/cmake
diff options
context:
space:
mode:
authorAlexandre Almeida <[email protected]>2024-03-01 04:34:53 -0300
committerGitHub <[email protected]>2024-03-01 08:34:53 +0100
commitdc1cec8bab97e09656479bded3265fb420a0b073 (patch)
tree1884bb182cf47f2c00801e3a837a81655d96965f /cmake
parent449f7d3fa68283ff4accbd9e9f69b672ec0cd7f8 (diff)
downloadraylib-dc1cec8bab97e09656479bded3265fb420a0b073.tar.gz
raylib-dc1cec8bab97e09656479bded3265fb420a0b073.zip
Remove GLFW mouse passthrough hack and increase GLFW version in CMake (#3852)
Diffstat (limited to 'cmake')
-rw-r--r--cmake/GlfwImport.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmake/GlfwImport.cmake b/cmake/GlfwImport.cmake
index 1c267aba..2395343c 100644
--- a/cmake/GlfwImport.cmake
+++ b/cmake/GlfwImport.cmake
@@ -1,8 +1,8 @@
if(USE_EXTERNAL_GLFW STREQUAL "ON")
- find_package(glfw3 3.3.3 REQUIRED)
+ find_package(glfw3 3.4 REQUIRED)
elseif(USE_EXTERNAL_GLFW STREQUAL "IF_POSSIBLE")
- find_package(glfw3 3.3.3 QUIET)
+ find_package(glfw3 3.4 QUIET)
endif()
if (glfw3_FOUND)
set(LIBS_PRIVATE ${LIBS_PRIVATE} glfw)