diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2021-02-23 22:00:19 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2021-02-23 22:00:19 +0200 |
commit | 671647188ce0caf6f734a898ff8ae6784f556c25 (patch) | |
tree | 2ef0693b8cab4d5404cb289725060ef186854eb0 | |
parent | 4c1a0c400f4a57bb51d663fcc3aa90014dd47df3 (diff) | |
download | meson-671647188ce0caf6f734a898ff8ae6784f556c25.zip meson-671647188ce0caf6f734a898ff8ae6784f556c25.tar.gz meson-671647188ce0caf6f734a898ff8ae6784f556c25.tar.bz2 |
Add note about using Ninja on old Meson versions. [skip ci]
-rw-r--r-- | docs/markdown/SimpleStart.md | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/markdown/SimpleStart.md b/docs/markdown/SimpleStart.md index bda532a..2c18dc4 100644 --- a/docs/markdown/SimpleStart.md +++ b/docs/markdown/SimpleStart.md @@ -161,4 +161,6 @@ is put in the `build` subdirectory and can be run directly from there. The project is now ready for development. You can edit the code with any editor and it is rebuilt by going in the `build` subdirectory and -executing the `meson compile` command. +executing the `meson compile` command. If your version of Meson is too +old, you can compile the project by running the command `ninja` +instead. |