From 65a4b44b7568cfe1f436a9a7e37dc70cf731e1e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Mon, 6 Nov 2023 13:31:26 +0100 Subject: [PATCH] docs: add missing cmake build dependency installation (#20788) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index acab87ecc5..356e3c79f8 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