From 5b355183a9aa1c89e927ff7fdc93efadf77a5ece Mon Sep 17 00:00:00 2001
From: Joseph Walton-Rivers <joseph@walton-rivers.uk>
Date: Fri, 29 Apr 2022 13:16:41 +0100
Subject: [PATCH] use modern cmake commands

---
 README.md | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/README.md b/README.md
index ebbe16b..06238f4 100644
--- a/README.md
+++ b/README.md
@@ -8,10 +8,8 @@ A library for building FOSS Games, Educational Resources and Academic Experiment
 It's designed to be a fairly standard cmake project, so the standard cmake steps should work:
 
 ```bash
-mkdir build
-cd build
-cmake ..
-make
+cmake -S . -B build -DCMAKE_BUILD_TYPE=Debug
+cmake --build build
 ```
 
 The library should also build the test scene (`demo`). There is a shellscript in the root of the
-- 
GitLab