summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Davenport <qball@blame.services>2022-11-17 17:41:11 +0100
committerDave Davenport <qball@blame.services>2022-11-17 17:41:11 +0100
commitff08041483ef67b4643ba3766b43bc0e9d2d9ff4 (patch)
treee9d730341a09599af1f5d48df759097076847c10
parent6d354e5b5380b9f83880777738f6c3f14968ffce (diff)
parent0bbccc31370f6b86e72b26da1afcd6a21e3cc9a8 (diff)
Merge remote-tracking branch 'origin/next' into header-include-hell
-rw-r--r--INSTALL.md8
1 files changed, 6 insertions, 2 deletions
diff --git a/INSTALL.md b/INSTALL.md
index dd7a5401..aff74e02 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -109,11 +109,15 @@ From this point, use the same steps you use for a release.
## Options for configure
When you run the configure step there are several options you can configure.
+
For Autotools, you can see the full list with `./configure --help`.
+
For Meson, before the initial setup, you can see rofi options in `meson_options.txt` and Meson options with `meson setup --help`.
-After the initial setup, use `meson configure build`.
+Meson's built-in options can be set using regular command line arguments, like so: `meson setup build --option=value`.
+Rofi-specific options can be set using the `-D` argument, like so: `meson setup build -Doption=value`.
+After the build dir is set up by `meson setup build`, the `meson configure build` command can be used to configure options, by the same means.
-The most useful one to set the installation prefix:
+The most useful one to set is the installation prefix:
# Autotools
../configure --prefix=<installation path>