CORGI
An open source project by
FPL.
|
CORGI is known to build with the following tool versions:
Prior to building, install the following components using the Linux distribution's package manager:
For example, on Ubuntu:
sudo apt-get install cmake
corgi
directory.make
to build the library and sample.For example:
cd corgi cmake -G'Unix Makefiles' make
To perform a debug build:
cd corgi cmake -G'Unix Makefiles' -DCMAKE_BUILD_TYPE=Debug make
Build targets can be configured using options exposed in corgi/CMakeLists.txt
by using cmake's -D
option. Build configuration set using the -D
option is sticky across subsequent builds.
For example, if a build is performed using:
cmake -G"Unix Makefiles" -DCMAKE_BUILD_TYPE=Debug make
to switch to a release build CMAKE_BUILD_TYPE must be explicitly specified:
cmake -G"Unix Makefiles" -DCMAKE_BUILD_TYPE=Release make
After building the project, you can execute the sample from the command line. For example:
./bin/entity_component_system_sample