summaryrefslogtreecommitdiffhomepage
path: root/projects/CMake
diff options
context:
space:
mode:
authorRay <[email protected]>2024-07-01 18:28:44 +0200
committerRay <[email protected]>2024-07-01 18:28:44 +0200
commitd243094ede4386ed2ff6e07009fa5b292dda328c (patch)
treec5a1e2b9646eaf0b4c85bbb9a9ad0d74dc94fdaa /projects/CMake
parent1fb0565148dbdf8f6969b3c8900e9882cb2839ef (diff)
downloadraylib-d243094ede4386ed2ff6e07009fa5b292dda328c.tar.gz
raylib-d243094ede4386ed2ff6e07009fa5b292dda328c.zip
WARNING: BREAKING: Renamed `PLATFORM_DESKTOP` to `PLATFORM_DESKTOP_GLFW`
This could potentially be a breaking change, for consistency, now every possible desktop backend has the proper name assigned: GLFW, SDL, RGFW raylib build system has been reviewed to fallback to `PLATFORM_DESKTOP_GLFW` by default when `PLATFORM_DESKTOP` defined
Diffstat (limited to 'projects/CMake')
-rw-r--r--projects/CMake/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/projects/CMake/CMakeLists.txt b/projects/CMake/CMakeLists.txt
index ee258d60..3b22964c 100644
--- a/projects/CMake/CMakeLists.txt
+++ b/projects/CMake/CMakeLists.txt
@@ -5,7 +5,7 @@ project(example)
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
# Dependencies
-set(RAYLIB_VERSION 5.0)
+set(RAYLIB_VERSION 5.5)
find_package(raylib ${RAYLIB_VERSION} QUIET) # QUIET or REQUIRED
if (NOT raylib_FOUND) # If there's none, fetch and build raylib
include(FetchContent)