diff options
author | Ewan <edm22@hotmail.co.uk> | 2020-06-16 12:47:25 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-06-16 13:54:47 +0200 |
commit | 6a567e119159ddf61aed5a932b24d552af7363cd (patch) | |
tree | fece87356c1d34a6cba20515caf593f619bbebd5 | |
parent | 7e2cf4be4b844d43015d8140fd587553bbc236f7 (diff) | |
download | serenity-6a567e119159ddf61aed5a932b24d552af7363cd.zip |
Docs: Add comment about required cmake version
Toolchain/BuiltIt.sh expected a version of cmake which
apt did not provide for my system. Added note of the
expected version and where to find a newer version.
-rw-r--r-- | Documentation/BuildInstructions.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Documentation/BuildInstructions.md b/Documentation/BuildInstructions.md index 5a08626000..07463313c3 100644 --- a/Documentation/BuildInstructions.md +++ b/Documentation/BuildInstructions.md @@ -27,6 +27,8 @@ sudo apt-get install gcc-9 g++-9 sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-9 900 --slave /usr/bin/g++ g++ /usr/bin/g++-9 ``` +Ensure your cmake version is >= 3.16 with `cmake --version`. If your package manager doesn't provide you with a suitable version you can download it directly from the [cmake website](https://cmake.org/download). + #### macOS prerequisites Make sure you have all the dependencies installed: ```bash |