Skip to content

Commit

Permalink
Start 3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
elmindreda committed Feb 29, 2024
1 parent 7b6aead commit d24ee99
Show file tree
Hide file tree
Showing 68 changed files with 73 additions and 765 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,11 @@ src/glfw3ConfigVersion.cmake
# Compiled binaries
src/libglfw.so
src/libglfw.so.3
src/libglfw.so.3.4
src/libglfw.so.3.5
src/libglfw.dylib
src/libglfw.dylib
src/libglfw.3.dylib
src/libglfw.3.4.dylib
src/libglfw.3.5.dylib
src/libglfw3.a
src/glfw3.lib
src/glfw3.dll
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.4...3.28 FATAL_ERROR)

project(GLFW VERSION 3.4.0 LANGUAGES C)
project(GLFW VERSION 3.5.0 LANGUAGES C)

if (POLICY CMP0069)
cmake_policy(SET CMP0069 NEW)
Expand Down
321 changes: 1 addition & 320 deletions README.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/build.md
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ With a few changes to your `CMakeLists.txt` you can locate the package and
target files generated when GLFW is installed.

```cmake
find_package(glfw3 3.4 REQUIRED)
find_package(glfw3 3.5 REQUIRED)
```

Once GLFW has been added to the project, link against it with the `glfw` target.
Expand Down
6 changes: 3 additions & 3 deletions docs/intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -621,17 +621,17 @@ The format of the string is as follows:
- The names of the always supported context creation APIs EGL and OSMesa
- Any additional compile-time options, APIs and (on Windows) what compiler was used

For example, compiling GLFW 3.4 with MinGW as a DLL for Windows, may result in a version string
For example, compiling GLFW 3.5 with MinGW as a DLL for Windows, may result in a version string
like this:

```c
3.4.0 Win32 WGL Null EGL OSMesa MinGW DLL
3.5.0 Win32 WGL Null EGL OSMesa MinGW DLL
```

Compiling GLFW as a static library for Linux, with both Wayland and X11 enabled, may
result in a version string like this:

```c
3.4.0 Wayland X11 GLX Null EGL OSMesa monotonic
3.5.0 Wayland X11 GLX Null EGL OSMesa monotonic
```

Loading

0 comments on commit d24ee99

Please sign in to comment.