This project is a fanmade rebuild of the Transarctica game, developed by Silmarils in 1993.
The game uses the following dev dependencies:
- Boost (≥ 1.66);
- CMake (≥ 3.9);
- Doxygen (≥ 1.8).
The project uses CMake for building:
mkdir build
cd build
cmake ..
make
Some utilities are defined in the env.sh
script that should be sourced when starting to work:
source env.sh
Tests are built by default. The project uses CTest for running tests:
cd build
ctest -V # increase verbosity
The project uses Doxygen for generating the documentation:
cd build
make doc
xdg-open doc/index.html
The project uses Astyle for linting. To apply the linting on all C++ files of the project:
astyle-apply
To check that all files of the project are correctly formatted:
astyle-check