Getting started
From Gnoll's Wiki
Build and install gnoll
Gnoll doesn't use like the most part of projects "Makefile" to build its binary, it uses Scons which is a tool developed in python. You can download Scons here : [[1]]
Build
Like for git, to install it, you can consult the official website (for GNU/Linux, scons is available on the package manager if your distribution has one).
To build Gnoll, you only have to write this command line in the Gnoll repertory (for exemple, me it's /home/leirbag/RoxxorProjects/gnoll) :
scons build
To build in debug mode :
scons build debug=1
To build with using log in gnoll :
scons build do_log=1
Options are persistent, for example, if you run "scons build do_log=1", and after "scons build", it will build with log (see gnoll.conf).
Install
Once it's built, you can install it where you want, by default it's precised in the output when you built it. You can choose it by the "prefix" option.
scons install prefix=/home/leirbag/gnoll
