From b2c3cff1ebfb397177a6c1fe369b5d635524d933 Mon Sep 17 00:00:00 2001 From: G3bE <32980656+G3bE@users.noreply.github.com> Date: Mon, 9 Mar 2020 17:58:35 +1000 Subject: [PATCH] Require minimal version, see #1123 --- Working-with-CMake.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Working-with-CMake.md b/Working-with-CMake.md index a4deba6..6ecbb03 100644 --- a/Working-with-CMake.md +++ b/Working-with-CMake.md @@ -4,7 +4,7 @@ If you know that anyone who builds your project, has raylib already installed, a cmake_minimum_required(VERSION 3.15) project(my_project) -find_package(raylib REQUIRED) # Uses the latest installed version +find_package(raylib 2.5.0 REQUIRED) # Requires at least versionn 2.5.0 set(CMAKE_C_STANDARD 11)