diff options
author | Jérôme Benoit <jerome.benoit@piment-noir.org> | 2023-11-06 13:31:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-06 13:31:26 +0100 |
commit | 65a4b44b7568cfe1f436a9a7e37dc70cf731e1e2 (patch) | |
tree | d009eb7af31ebaba11c579754238225e0063a532 | |
parent | fdb4953ea460d5c09ac73f3f37dd570d44893155 (diff) |
docs: add missing cmake build dependency installation (#20788)
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
-rw-r--r-- | README.md | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |