GlouOS logoGlouOSWiki
glouos.org

Setting up a dev environment

GlouOS is built for making games as well as playing them. Here is how to get a development setup going.

Installing dev tools

Editors, IDEs and build tools are a command away with Flatpak:

flatpak install <app>

Compilers and languages

Toolchains for C, C++, Rust, C#, Python and more are available and kept current with system updates.

Version control

Git is included out of the box. Configure your identity once and you are ready to clone and push:

git config --global user.name "Your Name"
        git config --global user.email "you@example.com"