From 0d88f29444780d1a70eb8d2c5034c0612871f10b Mon Sep 17 00:00:00 2001 From: Gabriel Guedes Date: Fri, 28 Aug 2020 22:44:31 -0300 Subject: [PATCH 1/2] Fix #12800: Add detailed information for macOS cmake builds Adding link to detailed information on compiling with cmake on MacOS --- readme.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/readme.md b/readme.md index bbc985f40d..bd4f4b67f4 100644 --- a/readme.md +++ b/readme.md @@ -157,6 +157,8 @@ ln -s ../data data ``` Then you can run the game by running `./openrct2`. +Detailed instructions can be found on [Building OpenRCT2 on macOS using CMake](https://github.com/OpenRCT2/OpenRCT2/wiki/Building-OpenRCT2-on-macOS-using-CMake). + ### Linux: The standard CMake build procedure is to install the [required libraries](https://github.com/OpenRCT2/OpenRCT2#linux), then: ``` From a8939656fc3b110d2622759c78040d101ff5d759 Mon Sep 17 00:00:00 2001 From: Gabriel Guedes Date: Fri, 28 Aug 2020 22:48:36 -0300 Subject: [PATCH 2/2] Rephrasing Linux's detailed instructions for builds Making it consistent with macOS text --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index bd4f4b67f4..c45b2c10d9 100644 --- a/readme.md +++ b/readme.md @@ -171,7 +171,7 @@ DESTDIR=. make install # the install target creates all the necessary files in p 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). +Detailed instructions can be found on [Building OpenRCT2 on Linux](https://github.com/OpenRCT2/OpenRCT2/wiki/Building-OpenRCT2-on-Linux). ---