diff options
author | Manuel Zimmermann <manuel@mauzi.eu> | 2020-06-14 11:36:43 +0200 |
---|---|---|
committer | Harry Jeffery <harry@exec64.co.uk> | 2020-07-21 01:47:55 +0100 |
commit | 767ce08307df6e816fcca7dfd747d8cc6a593fc5 (patch) | |
tree | 4cbf928bc9045e888bf1e53f7a29a8c99ac29314 | |
parent | ebcca1345201fd10f42c7a24790ee32384be0729 (diff) | |
download | imv-767ce08307df6e816fcca7dfd747d8cc6a593fc5.tar.gz |
README: Improve build instructions
The .gitignore file ignores the directory build/, therefore it makes
most sense to use this directory in the example as well.
-rw-r--r-- | README.md | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -140,9 +140,9 @@ Dependencies are determined by which backends and window systems are enabled when building `imv`. You can find a summary of which backends are available in [meson_options.txt](meson_options.txt) - $ meson builddir/ - $ ninja -C builddir/ - # ninja -C builddir/ install + $ meson build/ + $ ninja -C build/ + # ninja -C build/ install `--prefix` controls installation prefix. If more control over installation paths is required, `--bindir`, `--mandir` and `--datadir` are |