From 8f14179a725d01637836cfce67489d3f3ed35e80 Mon Sep 17 00:00:00 2001 From: Johannes Schneider Date: Mon, 31 May 2021 23:52:06 +0200 Subject: [PATCH] Replace Ninja with Make as default build instruction on Linux --- README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0c83dcd..8e0bb37 100644 --- a/README.md +++ b/README.md @@ -98,7 +98,14 @@ With this one function call: On Windows it is recommended to use [CMake UI](https://cmake.org/runningcmake/). Alternatively you can generate a Visual Studio project map using CMake in command line: `cmake -B./build/ -DCMAKE_BUILD_TYPE=Debug -G "Visual Studio 16 2019" -A x64 ./` -On Linux, use CMake with [Ninja](https://ninja-build.org/) and run `cmake -GNinja -Bbuild -DCMAKE_BUILD_TYPE=Debug` +On Linux: + +``` +mkdir build +cd build +cmake .. +make +``` The following CMake options are available