From 4c0653f48fb5e7bb5fda7838619a180a942b53b5 Mon Sep 17 00:00:00 2001 From: Nikolas Date: Fri, 2 Apr 2021 18:06:12 +0200 Subject: [PATCH] Rephrasing --- 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 c226d7c..369cf4b 100644 --- a/Working-with-CMake.md +++ b/Working-with-CMake.md @@ -1,5 +1,5 @@ ## Requiring raylib to be installed -If you know that anyone who builds your project, has raylib already installed, a simple `CMakeLists.txt` could look like this: +If you installed raylib with a package manager, or used `make install`, a simple `CMakeLists.txt` could look like this: ```cmake cmake_minimum_required(VERSION 3.15) project(my_project)