From 56a4584a1b77d3c0d5df7054b65ca0571d91a4a6 Mon Sep 17 00:00:00 2001 From: Francesco Date: Sun, 14 Mar 2021 12:55:31 +0100 Subject: [PATCH] Update README about Meson versions < 0.54 Related to issue https://github.com/franko/lite-xl/issues/98 --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 134961ce..15fb0b12 100644 --- a/README.md +++ b/README.md @@ -70,6 +70,14 @@ meson compile -C build meson install -C build ``` +If you are using a version of Meson below 0.54 you need to use diffent commands to compile and install: + +```sh +meson setup build +ninja -C build +ninja -C build install +``` + When performing the `meson setup` command you may enable the `-Dportable=true` option to specify whether a portable build should be done. If `portable` is enabled, Lite XL is built to use `data` and `user` directories placed next to the executable.