mirror of
https://gitlab.com/square-game-liberation-front/F.E.I.S.git
synced 2025-02-24 05:53:23 +01:00
28 lines
548 B
Markdown
28 lines
548 B
Markdown
# Compiling
|
|
|
|
In other words, how to create a new F.E.I.S. executable from the source code.
|
|
|
|
0. (If not done already) Set up you work environment by following [this page](docs/Setup.md)
|
|
0. `cd` into the root of your local copy of F.E.I.S.'s source code
|
|
|
|
```console
|
|
$ cd F.E.I.S./
|
|
```
|
|
|
|
0. Setup a build directory called `build`
|
|
|
|
```console
|
|
$ meson setup build
|
|
```
|
|
|
|
0. Compile in that directory
|
|
|
|
```console
|
|
$ meson compile -C build
|
|
```
|
|
|
|
0. Setup the assets
|
|
|
|
```console
|
|
$ ln -s ../assets build/assets
|
|
``` |