Updated GLFW to latest 3.4 (github master - 16Nov2020)

WARNING: Some CMake files not changed
WARNING: glfw_native.h contains custom changes
This commit is contained in:
Ray
2020-11-30 09:11:22 +01:00
parent 23ed67cce0
commit 83916bd3c2
45 changed files with 2434 additions and 1276 deletions

13
src/external/glfw/CMake/glfw3.pc.in vendored Normal file
View File

@ -0,0 +1,13 @@
prefix=@CMAKE_INSTALL_PREFIX@
exec_prefix=${prefix}
includedir=@CMAKE_INSTALL_FULL_INCLUDEDIR@
libdir=@CMAKE_INSTALL_FULL_LIBDIR@
Name: GLFW
Description: A multi-platform library for OpenGL, window and input
Version: @GLFW_VERSION@
URL: https://www.glfw.org/
Requires.private: @GLFW_PKG_DEPS@
Libs: -L${libdir} -l@GLFW_LIB_NAME@
Libs.private: @GLFW_PKG_LIBS@
Cflags: -I${includedir}

View File

@ -0,0 +1,3 @@
include(CMakeFindDependencyMacro)
find_dependency(Threads)
include("${CMAKE_CURRENT_LIST_DIR}/glfw3Targets.cmake")