Fork vom Github-Repository von eressea/server
Go to file
Enno Rehling fb653d6dcf Merge branch 'bug2274' into develop 2017-01-25 21:15:35 +01:00
cJSON@43c04ad612
cmake@f1fb3943ac
conf fix game_name, remove it from rules 2017-01-22 20:32:54 +01:00
critbit@9718362412 fix memory leak, not cleaning up deadhash 2016-09-10 21:01:22 +02:00
cutest@6e268687db
dlmalloc@f1446c47ca
doc adding gruenbaer gprof output for historical preservation 2016-09-22 10:12:35 +02:00
iniparser@ecf956b980
lunit@155c965944
process Revert "remove sqlite3 code and dependency" 2017-01-22 12:57:25 +01:00
quicklist@f837dd31e5
res fix game_name, remove it from rules 2017-01-22 20:32:54 +01:00
s game.start in eressea.ini overrides calendar 2017-01-22 05:18:32 +01:00
scripts BUG 2273: runtests.bat fails when config is auto-loaded. 2017-01-24 10:36:27 +01:00
se
share
src BESCHREIBE REGION ist jeder Einheit des Regionsbesitzers erlaubt 2017-01-25 21:03:08 +01:00
storage@2117191d4a new storage module (without textstore and snprintf) 2016-11-26 07:24:19 +01:00
support
tests BUG 2273: runtests.bat fails when config is auto-loaded. 2017-01-24 10:36:27 +01:00
.editorconfig clarify building_type.maxsize and add error logging for bug 2221. 2016-08-06 13:52:29 +02:00
.gitattributes
.gitignore little bit of refactoring and better variable names. 2016-10-03 16:26:40 +02:00
.gitmodules working on a new tolua build step that supports 5.1 2016-09-30 19:47:40 +00:00
.travis.yml disable osx builds again 2016-11-17 12:43:37 +01:00
CMakeLists.txt Revert "remove sqlite3 code and dependency" 2017-01-22 12:57:25 +01:00
LICENSE
Makefile
README.md
configure
schema.sql
todo.md
vs2010-build.bat
vs2012-build.bat
vs2013-build.bat
vs2015-build.bat fixing the password saving test. 2016-05-20 22:38:18 +02:00

README.md

What is this?

This repository contains the source code for the Play-by-Mail strategy game Eressea.

Prerequisites

Eressea depends on a number of external libraries. On a recent Debian-based Linux system, this is the apt-get command to install all of them:

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

How to check out and build the Eressea 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
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.