From 3a2a2d9cc449c3c383169a5cadf322ae45c52508 Mon Sep 17 00:00:00 2001 From: jseb Date: Mon, 28 Oct 2019 19:57:16 +0100 Subject: [PATCH] Revert "projects: CMake: bump up minimal raylib version (#983)" This reverts commit 82306af111894397cb2028ac270f2916aa615fab. --- projects/CMake/CMakeLists.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/projects/CMake/CMakeLists.txt b/projects/CMake/CMakeLists.txt index ef0d3c1b1..cf1d65a62 100644 --- a/projects/CMake/CMakeLists.txt +++ b/projects/CMake/CMakeLists.txt @@ -1,8 +1,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 2.0 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