From 58eb9c3fed9cadad9ecea5a8dd09288e52ab9bae Mon Sep 17 00:00:00 2001 From: Harry van Haaren Date: Tue, 24 Jul 2018 22:23:14 +0100 Subject: [PATCH] README: update to meson build instructions Meson is much nicer and easier to use for compiling, and it will become the only build system in a future release. Signed-off-by: Harry van Haaren --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5654c56..7ea2dcd 100644 --- a/README.md +++ b/README.md @@ -32,9 +32,10 @@ Install Run the following commands from the top directory to configure & install Luppp: ```bash +meson build cd build -./compile.sh -./run.sh +ninja +./luppp ```