A cyperpunk dungeoun crawler RPG rogue-like game.
Writen in C++ language, using SDL library.
Simple compilation with gcc compiler:
$ make
Compiles with debug flags and using clang compiler:
$ make debug
Compile with optimization flags and using gcc compiler:
$ make release
After a envirolment setup, cross-compile generating a windows OS executable:
$ make [release] OS=windows
Generate doxygen files:
$ make doc
Clean auto generated files:
$ make clean
This project depends on SDL2
libraries to compile and Doxygen
to generate documentation.
Therefore, please make sure you have the packages SDL2 and Doxygen.
Also, to automatic format C++ files according to the project codying style, the envirolment is set to use clang-format-3.6 package.
This project guidelines are based on the Linux kernel coding style.
To automatic format all code:
$ make format