2021-12-31 11:15:50 +01:00
|
|
|
# Compiling
|
2021-12-30 01:48:17 +01:00
|
|
|
|
2021-12-31 11:15:50 +01:00
|
|
|
In other words, how to create a new F.E.I.S. executable from the source code.
|
2021-12-30 01:48:17 +01:00
|
|
|
|
2021-12-31 11:15:50 +01:00
|
|
|
0. (If not done already) Set up you work environment by following [this page](docs/Setup.md)
|
2021-12-30 01:48:17 +01:00
|
|
|
0. `cd` into the root of your local copy of F.E.I.S.'s source code
|
|
|
|
|
|
|
|
```console
|
|
|
|
$ cd F.E.I.S./
|
|
|
|
```
|
|
|
|
|
2021-12-31 11:15:50 +01:00
|
|
|
0. Setup the `build` directory
|
2021-12-30 01:48:17 +01:00
|
|
|
|
|
|
|
```console
|
|
|
|
$ meson setup build
|
|
|
|
```
|
|
|
|
|
|
|
|
0. Build
|
|
|
|
|
|
|
|
```console
|
|
|
|
$ meson compile -C build
|
|
|
|
```
|
|
|
|
|
2021-12-31 11:15:50 +01:00
|
|
|
0. Setup the assets
|
2021-12-30 01:48:17 +01:00
|
|
|
|
|
|
|
```console
|
|
|
|
$ ln -s ../assets build/assets
|
|
|
|
```
|