F.E.I.S/docs/Compiling.md

548 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 this page

  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
    
  4. Compile in that directory

    $ meson compile -C build
    
  5. Setup the assets

    $ ln -s ../assets build/assets