diff options
author | Sergio Ahumada <4146450+sahumada@users.noreply.github.com> | 2020-08-24 18:27:19 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-08-25 09:36:56 +0200 |
commit | 647f3b87bd6abfc70391d37eb2b208dc1a655755 (patch) | |
tree | e5d0b0905ca6e886712e6474f30ff5af308aaab2 /Documentation | |
parent | f86c074be8f83ecbbcaacef47683cddc23e6d936 (diff) | |
download | serenity-647f3b87bd6abfc70391d37eb2b208dc1a655755.zip |
Documentation: Update BuildInstructions.md
Add missing `cmake ..' line before compiling with make
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/BuildInstructions.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Documentation/BuildInstructions.md b/Documentation/BuildInstructions.md index 8fc371763f..7fc1fc02ea 100644 --- a/Documentation/BuildInstructions.md +++ b/Documentation/BuildInstructions.md @@ -84,6 +84,7 @@ Once the toolchain and cmake have been built, go into the `Build/` directory and ```bash $ cd .. $ cd Build +$ cmake .. $ make $ make install ``` |