Simple 2D RPG made in C++ and SFML.
$ git clone https://<git>.com/riyyi/rpg
$ cd rpg
$ git submodule init
$ git submodule update
Or
$ git clone --recursive https://<git>.com/riyyi/rpg
$ git pull
$ git submodule update --recursive
Install the dependencies:
$ mkdir build
$ cd build
$ cmake ..
$ make
Download and extract build tools:
- MinGW (64-bit) get the version recommended by SFML!
- CMake
Add build tools to system PATH:
- C:\mingw64\bin
- C:\cmake\bin
$ mkdir build
$ cd build
$ cmake -G "MinGW Makefiles" ..
$ mingw32-make.exe
- Michael Dawson - Beginning C++ Through Game Programming, Third Edition - 2010