forked from eressea/server
-
Notifications
You must be signed in to change notification settings - Fork 0
Home
TomBraun edited this page Nov 13, 2014
·
11 revisions
This repository contains the server that runs the Eressea Play-by-Email game.
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 libxml2-dev liblua5.2-dev libtolua-dev libncurses5-dev libsqlite3-dev
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
cd server
./configure
./s/build
If you got this far and all went well, you have built a server (it is linked from the game
subdirectory), and it will have passed some basic functionality tests.