fix: fixes issue while downloading the binaries from gh

The resource at the URL 
https://github.com/raysan5/raylib/archive/refs/tags/5.5.tar.gz
Cannot be found, so the download in the makefile fails and the lib cannot be added via URL.
This commit is contained in:
OctoD 2024-09-30 11:22:54 +02:00 committed by GitHub
parent 0573ef0382
commit 11a0433768
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -5,7 +5,7 @@ project(example)
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
# Dependencies
set(RAYLIB_VERSION 5.5)
set(RAYLIB_VERSION 5.0)
find_package(raylib ${RAYLIB_VERSION} QUIET) # QUIET or REQUIRED
if (NOT raylib_FOUND) # If there's none, fetch and build raylib
include(FetchContent)