mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-11 13:50:48 -05:00
Merge remote-tracking branch 'origin/next' into header-include-hell
This commit is contained in:
commit
ff08041483
1 changed files with 8 additions and 4 deletions
12
INSTALL.md
12
INSTALL.md
|
@ -109,11 +109,15 @@ From this point, use the same steps you use for a release.
|
||||||
## Options for configure
|
## Options for configure
|
||||||
|
|
||||||
When you run the configure step there are several options you can 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`.
|
|
||||||
|
|
||||||
The most useful one to set the installation prefix:
|
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`.
|
||||||
|
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 is the installation prefix:
|
||||||
|
|
||||||
# Autotools
|
# Autotools
|
||||||
../configure --prefix=<installation path>
|
../configure --prefix=<installation path>
|
||||||
|
|
Loading…
Reference in a new issue