aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRay <raysan5@gmail.com>2019-10-29 15:56:14 +0100
committerRay <raysan5@gmail.com>2019-10-29 15:56:14 +0100
commit64c588e9d8e9cb34da4fe592ae091d62f59d6853 (patch)
treed26eb4003d9015bb1a82ad7ba6eccdab4002f92e
parent862ef0524eba5c2c4202411f4b7b69d4c1e732a1 (diff)
downloadraylib-64c588e9d8e9cb34da4fe592ae091d62f59d6853.tar.gz
raylib-64c588e9d8e9cb34da4fe592ae091d62f59d6853.zip
Review latest PR #1003
-rw-r--r--.gitignore2
-rw-r--r--projects/CMake/CMakeLists.txt3
2 files changed, 2 insertions, 3 deletions
diff --git a/.gitignore b/.gitignore
index 81f84b1a..17cad97a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,8 +1,6 @@
# Ignore generated files
# ...
-.gitignore
-
# Ignore VIM's backup generated files
*.swp
*.swo
diff --git a/projects/CMake/CMakeLists.txt b/projects/CMake/CMakeLists.txt
index cf1d65a6..ef0d3c1b 100644
--- a/projects/CMake/CMakeLists.txt
+++ b/projects/CMake/CMakeLists.txt
@@ -1,7 +1,8 @@
cmake_minimum_required(VERSION 3.11) # FetchContent is available in 3.11+
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
# This part downloads raylib and builds it if it's not installed on your system