mirror of
https://github.com/hyprwm/hyprlang.git
synced 2024-11-16 18:25:57 +01:00
readme: add build instructions
This commit is contained in:
parent
946e3d604c
commit
c69c286b31
1 changed files with 13 additions and 0 deletions
13
README.md
13
README.md
|
@ -1,9 +1,22 @@
|
|||
# hyprlang
|
||||
|
||||
The hypr configuration language is an extremely efficient, yet easy to work with, configuration language
|
||||
for linux applications.
|
||||
|
||||
It's user-friendly, easy to grasp, and easy to implement.
|
||||
|
||||
## Building and installation
|
||||
|
||||
Building is done via CMake:
|
||||
```sh
|
||||
cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Release -S . -B ./build
|
||||
cmake --build ./build --config Release --target hyprlang -j`nproc 2>/dev/null || getconf NPROCESSORS_CONF`
|
||||
```
|
||||
Install with:
|
||||
```sh
|
||||
cmake --install ./build
|
||||
```
|
||||
|
||||
## Example config
|
||||
|
||||
```ini
|
||||
|
|
Loading…
Reference in a new issue