Work in progress...
This project uses git submodules, so when you are cloning the project clone it with the following command:
git clone --recurse-submodules git@github.com:ivankatalenic/fps-game.git
The submodules the project uses are:
To successfully build this project you must have a modern C++ compiler, cmake, and make programs.
Open a terminal, and set your working directory to fps-game.
This project was built, and tested on Linux Mint with gcc-8.
Steps for building the project:
cmake .
make -j <number-of-cores>
./thegame
This project was built, and tested on Windows 10 with MSYS2's gcc 9.2.0.
Steps for building the project with MSYS2:
cmake -G "MSYS Makefiles" .
make -j <number-of-cores>
thegame