Skip to content
Enno Rehling edited this page Jun 27, 2020 · 15 revisions

What is this?

This repository contains the server that runs the Eressea Play-by-Email game.

Prerequisites

Eressea depends on a number of external libraries. On Ubuntu, this is the apt-get command you need to install all of them:

sudo apt-get install git cmake gcc make luarocks libexpat1-dev liblua5.2-dev libtolua-dev libncurses5-dev libsqlite3-dev

How to check out and build the server

This repository relies heavily on the use of submodules, and it pulls in most of the code from those. The build system being used is cmake, which can create Makefiles on Unix, or Visual Studio project files on Windows. Here's how you clone and build the source on Ubuntu:

git clone --recursive git://github.com/eressea/server.git source
cd source
git submodule update --init
s/cmake-init
s/build

If you got this far and all went well, you have built the server, and it will have passed some basic functionality tests.