summaryrefslogtreecommitdiffhomepage
path: root/projects/CMake/CMakeLists.txt
diff options
context:
space:
mode:
authorJean-Seb / jseb <[email protected]>2019-10-29 15:54:01 +0100
committerRay <[email protected]>2019-10-29 15:54:01 +0100
commit862ef0524eba5c2c4202411f4b7b69d4c1e732a1 (patch)
tree8f1875297c497fb1ba4327fa7259630dc4e9f227 /projects/CMake/CMakeLists.txt
parentd73abe73e5e70ff18d68552ca0562ddccee8679b (diff)
downloadraylib-862ef0524eba5c2c4202411f4b7b69d4c1e732a1.tar.gz
raylib-862ef0524eba5c2c4202411f4b7b69d4c1e732a1.zip
Raysan (#1003)
* new linux makefile for Android portages * Revert "projects: CMake: bump up minimal raylib version (#983)" This reverts commit 82306af111894397cb2028ac270f2916aa615fab. * new PR for upstream * for Raysan
Diffstat (limited to 'projects/CMake/CMakeLists.txt')
-rw-r--r--projects/CMake/CMakeLists.txt3
1 files changed, 1 insertions, 2 deletions
diff --git a/projects/CMake/CMakeLists.txt b/projects/CMake/CMakeLists.txt
index ef0d3c1b..cf1d65a6 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