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:
parent
0573ef0382
commit
11a0433768
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user