projects: CMake: bump up minimal raylib version (#983)

While at it, add comment to indicate what the version signifies.

[a3f: updated commit message]
This commit is contained in:
elitepleb 2019-10-05 23:24:03 +03:00 committed by Ahmad Fatoum
parent 596338b26a
commit 82306af111
1 changed files with 2 additions and 1 deletions

View File

@ -1,7 +1,8 @@
cmake_minimum_required(VERSION 3.11) # FetchContent is available in 3.11+ cmake_minimum_required(VERSION 3.11) # FetchContent is available in 3.11+
project(example) project(example)
find_package(raylib 2.0 QUIET) # Let CMake search for a raylib-config.cmake # Set this to the minimal version you want to support
find_package(raylib 2.5 QUIET) # Let CMake search for a raylib-config.cmake
# You could change the QUIET above to REQUIRED and remove this if() clause # 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 # This part downloads raylib and builds it if it's not installed on your system