F.E.I.S/docs/Compiling.md
2022-04-11 01:25:24 +02:00

745 B

Compiling

In other words, how to create a new F.E.I.S. executable from the source code.

  1. (If not done already) Set up you work environment by following the Setup Steps

  2. cd into the root of your local copy of F.E.I.S.'s source code

    $ cd F.E.I.S./
    
  3. Setup a build directory called build

    $ meson setup build
    

    If you want to compile the unit tests as well, pass in -D tests=true. You can also set this option later by doing :

    $ meson configure build -D tests=true
    
  4. Compile in that directory

    $ meson compile -C build
    
  5. Setup the assets

    $ ln -s ../assets build/assets