From a4d34f7f4bc50223ad3f129b9416dda64c401568 Mon Sep 17 00:00:00 2001 From: G3bE <32980656+G3bE@users.noreply.github.com> Date: Sun, 8 Mar 2020 21:07:13 +1000 Subject: [PATCH] Always use latest raylib version --- 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 ef0d3c1b1..8b407d32a 100644 --- a/projects/CMake/CMakeLists.txt +++ b/projects/CMake/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.11) # FetchContent is available in 3.11+ project(example) # Set this to the minimal version you want to support -find_package(raylib 2.5 QUIET) # Let CMake search for a raylib-config.cmake +find_package(raylib QUIET) # Let CMake search for a raylib-config.cmake # You could change the QUIET above to REQUIRED and remove this if() clause # This part downloads raylib and builds it if it's not installed on your system