From 11a0433768fdca69a0ba0b4814c2a5a1d94562d0 Mon Sep 17 00:00:00 2001 From: OctoD Date: Mon, 30 Sep 2024 11:22:54 +0200 Subject: [PATCH] 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. --- projects/CMake/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/CMake/CMakeLists.txt b/projects/CMake/CMakeLists.txt index 96e33f344..be7ec3d74 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.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)