From aed52ef51b4550db0471c5b45ddcf10aeb7913cd Mon Sep 17 00:00:00 2001 From: John Ericson Date: Tue, 12 Aug 2025 13:28:28 -0400 Subject: [PATCH] Add Meson build instructions Also fix CMake instructions indent level --- README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 59afd8f..0b43377 100644 --- a/README.md +++ b/README.md @@ -81,7 +81,7 @@ make check sudo make install ``` -## Via [CMake](https://cmake.org/) (and [Ninja](https://ninja-build.org/)) +### Via [CMake](https://cmake.org/) (and [Ninja](https://ninja-build.org/)) ```console mkdir build @@ -91,6 +91,16 @@ ninja all sudo ninja install ``` +### Via [Meson](https://mesonbuild.com/) (and [Ninja](https://ninja-build.org/)) + +```console +mkdir build +meson configure build +cd build +ninja all +sudo ninja install +``` + ### Via Nix You can build with Nix in several ways.