summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorSergio Ahumada <4146450+sahumada@users.noreply.github.com>2020-08-24 18:27:19 +0200
committerAndreas Kling <kling@serenityos.org>2020-08-25 09:36:56 +0200
commit647f3b87bd6abfc70391d37eb2b208dc1a655755 (patch)
treee5d0b0905ca6e886712e6474f30ff5af308aaab2 /Documentation
parentf86c074be8f83ecbbcaacef47683cddc23e6d936 (diff)
downloadserenity-647f3b87bd6abfc70391d37eb2b208dc1a655755.zip
Documentation: Update BuildInstructions.md
Add missing `cmake ..' line before compiling with make
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/BuildInstructions.md1
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
```