mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-18 13:54:36 -05:00
INSTALL: Add missing Meson instructions
Signed-off-by: Quentin Glidic <sardemff7+git@sardemff7.net>
This commit is contained in:
parent
4c20564900
commit
cf8b76c6a6
1 changed files with 23 additions and 0 deletions
23
INSTALL.md
23
INSTALL.md
|
@ -73,6 +73,28 @@ make install
|
||||||
|
|
||||||
The default installation prefix is: `/usr/local/` use `./configure --prefix={prefix}` to install into another location.
|
The default installation prefix is: `/usr/local/` use `./configure --prefix={prefix}` to install into another location.
|
||||||
|
|
||||||
|
### Meson
|
||||||
|
|
||||||
|
Check dependencies and configure build system:
|
||||||
|
|
||||||
|
```
|
||||||
|
meson setup build
|
||||||
|
```
|
||||||
|
|
||||||
|
Build Rofi:
|
||||||
|
|
||||||
|
```
|
||||||
|
ninja -C build
|
||||||
|
```
|
||||||
|
|
||||||
|
The actual install, execute as root (if needed):
|
||||||
|
|
||||||
|
```
|
||||||
|
ninja -C build install
|
||||||
|
```
|
||||||
|
|
||||||
|
The default installation prefix is: `/usr/local/` use `meson setup build --prefix={prefix}` to install into another location.
|
||||||
|
|
||||||
## Install a checkout from git
|
## Install a checkout from git
|
||||||
|
|
||||||
The GitHub Pages version of these directions may be out of date. Please use
|
The GitHub Pages version of these directions may be out of date. Please use
|
||||||
|
@ -171,6 +193,7 @@ make CFLAGS="-O0 -g3" clean rofi
|
||||||
|
|
||||||
# Meson
|
# Meson
|
||||||
meson configure build --debug
|
meson configure build --debug
|
||||||
|
ninja -C build
|
||||||
```
|
```
|
||||||
|
|
||||||
### Get a backtrace
|
### Get a backtrace
|
||||||
|
|
Loading…
Reference in a new issue