Simple 2D RPG made in C++ and SFML
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Riyyi 2553e5d8aa Remove comments from cmake build file 3 years ago
data Move data to project root 3 years ago
deps Add SFML, rapidjson as git submodule 3 years ago
src Change walking input to WASD 3 years ago
.gitattributes 💥🐫 Added .gitattributes 9 years ago
.gitignore Update .gitignore 3 years ago
.gitmodules Add SFML, rapidjson as git submodule 3 years ago
CMakeLists.txt Remove comments from cmake build file 3 years ago
README.org Add REAME.org 3 years ago

README.org

Simple RPG

Simple RPG game made in C++ and SFML.

Download

Clone

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

Or

  $ git clone --recursive https://github.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