From 272fc929d1b374ad78cc3218aa443783772d1158 Mon Sep 17 00:00:00 2001 From: Krutonium <3945538+Krutonium@users.noreply.github.com> Date: Thu, 3 Oct 2019 11:36:30 -0400 Subject: [PATCH] Add a bit more explanation to build instructions --- readme.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 01f9c2b9c1..9d620fcc7e 100644 --- a/readme.md +++ b/readme.md @@ -164,10 +164,13 @@ The standard CMake build procedure is to install the [required libraries](https: ``` mkdir build cd build -cmake ../ # set your standard cmake options, e.g. build type here +cmake ../ # set your standard cmake options, e.g. build type here - For example, -DCMAKE_BUILD_TYPE=RelWithDebInfo make # you can parallelise your build job with e.g. -j8 or consider using ninja DESTDIR=. make install # the install target creates all the necessary files in places we expect them ``` + +You can also use Ninja in place of Make, if you prefer, see Wiki for details. + Detailed instructions can be found on our [wiki](https://github.com/OpenRCT2/OpenRCT2/wiki/Building-OpenRCT2-on-Linux). ---