summaryrefslogtreecommitdiffhomepage
path: root/projects/CMake
diff options
context:
space:
mode:
authorG3bE <[email protected]>2020-03-09 03:04:29 +1000
committerGitHub <[email protected]>2020-03-08 18:04:29 +0100
commitb7c0d5b6ddfb8fd958803db837e1839ea54f6d37 (patch)
tree1418b97163a2f75a3d44c8bd70a1ebb2779947ea /projects/CMake
parent680f9d5772015fcf0edc3cb6b38cb7efda9d4bf1 (diff)
downloadraylib-b7c0d5b6ddfb8fd958803db837e1839ea54f6d37.tar.gz
raylib-b7c0d5b6ddfb8fd958803db837e1839ea54f6d37.zip
Always use latest raylib version for cmake (#1123)
* Always use latest raylib version * Always use latest raylib version * Always use latest raylib version
Diffstat (limited to 'projects/CMake')
-rw-r--r--projects/CMake/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/projects/CMake/CMakeLists.txt b/projects/CMake/CMakeLists.txt
index ef0d3c1b..8b407d32 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