21 lines
317 B
Markdown
21 lines
317 B
Markdown
# Building
|
|
|
|
Install dependencies (uthash, libffi) then:
|
|
|
|
```sh
|
|
meson setup builddir
|
|
meson compile -C builddir
|
|
```
|
|
|
|
Install with:
|
|
|
|
```sh
|
|
meson install -C builddir
|
|
```
|
|
|
|
You may need to run `ldconfig` or reboot to update your ld cache.
|
|
|
|
## Bytecode Format
|
|
|
|
Under the hood, Ground uses a bytecode format to store things.
|