1
0
Derivar 0
Simple 2D RPG made in C++ and SFML
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
Riyyi 2ee81d12ab Update title and git urls há 3 anos
data Move data to project root há 3 anos
deps Add SFML, rapidjson as git submodule há 3 anos
src Change walking input to WASD há 3 anos
.gitattributes 💥🐫 Added .gitattributes há 9 anos
.gitignore Update .gitignore há 3 anos
.gitmodules Add SFML, rapidjson as git submodule há 3 anos
CMakeLists.txt Remove comments from cmake build file há 3 anos
README.org Update title and git urls há 3 anos

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