1
0
Fork 0
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:
Quentin Glidic 2019-05-10 20:05:38 +02:00
parent 4c20564900
commit cf8b76c6a6
No known key found for this signature in database
GPG key ID: AC203F96E2C34BB7

View file

@ -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