summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorJérôme Benoit <jerome.benoit@piment-noir.org>2023-11-06 13:31:26 +0100
committerGitHub <noreply@github.com>2023-11-06 13:31:26 +0100
commit65a4b44b7568cfe1f436a9a7e37dc70cf731e1e2 (patch)
treed009eb7af31ebaba11c579754238225e0063a532 /README.md
parentfdb4953ea460d5c09ac73f3f37dd570d44893155 (diff)
docs: add missing cmake build dependency installation (#20788)
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index acab87ecc..356e3c79f 100644
--- a/README.md
+++ b/README.md
@@ -60,9 +60,9 @@ scoop install deno
Build and install from source using [Cargo](https://crates.io/crates/deno):
```sh
-# Install the Protobuf compiler
-apt install -y protobuf-compiler # Linux
-brew install protobuf # macOS
+# Install build dependencies
+apt install -y cmake protobuf-compiler # Linux
+brew install cmake protobuf # macOS
# Build and install Deno
cargo install deno --locked