Skip to content

Latest commit

 

History

History
65 lines (44 loc) · 994 Bytes

README.md

File metadata and controls

65 lines (44 loc) · 994 Bytes

Transarctica Rebirth

This project is a fanmade rebuild of the Transarctica game, developed by Silmarils in 1993.

Dependencies

The game uses the following dev dependencies:

  • Boost (≥ 1.66);
  • CMake (≥ 3.9);
  • Doxygen (≥ 1.8).

Build the project

The project uses CMake for building:

mkdir build
cd build
cmake ..
make

Development

Some utilities are defined in the env.sh script that should be sourced when starting to work:

source env.sh

Run tests

Tests are built by default. The project uses CTest for running tests:

cd build
ctest -V # increase verbosity

Generate documentation

The project uses Doxygen for generating the documentation:

cd build
make doc
xdg-open doc/index.html

Apply and check style

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