1
0
Fork 0
Simple 2D RPG made in C++ and SFML
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
Riyyi 2ee81d12ab Update title and git urls vor 3 Jahren
data Move data to project root vor 3 Jahren
deps Add SFML, rapidjson as git submodule vor 3 Jahren
src Change walking input to WASD vor 3 Jahren
.gitattributes 💥🐫 Added .gitattributes vor 9 Jahren
.gitignore Update .gitignore vor 3 Jahren
.gitmodules Add SFML, rapidjson as git submodule vor 3 Jahren
CMakeLists.txt Remove comments from cmake build file vor 3 Jahren
README.org Update title and git urls vor 3 Jahren

README.org

Simple 2D RPG

Simple 2D RPG made in C++ and SFML.

Download

Clone

  $ git clone https://<git>.com/riyyi/rpg
  $ cd rpg
  $ git submodule init
  $ git submodule update

Or

  $ git clone --recursive https://<git>.com/riyyi/rpg

Update

  $ git pull
  $ git submodule update --recursive

Build instructions

Linux

Prerequisites

Install the dependencies:

Compile

$ mkdir build
$ cd build
$ cmake ..
$ make

Windows

Prerequisites

Download and extract build tools:

Add build tools to system PATH:

  • C:mingw64\bin
  • C:\cmake\bin

Compile

$ mkdir build
$ cd build
$ cmake -G "MinGW Makefiles" ..
$ mingw32-make.exe

Libraries