Fork vom Github-Repository von eressea/server
Find a file
Enno Rehling 517bc54856 Merge pull request #631 from ennorehling/develop
More configuration through eressea.ini
2017-01-22 12:04:58 +01:00
cJSON@43c04ad612
cmake@f1fb3943ac Update to latest submodules, fix iniparser and critbit. 2015-07-12 10:38:01 +02:00
conf no starting equipment. 2017-01-22 08:05:19 +01:00
critbit@9718362412 fix memory leak, not cleaning up deadhash 2016-09-10 21:01:22 +02:00
cutest@6e268687db Update to latest submodules, fix iniparser and critbit. 2015-07-12 10:38:01 +02:00
dlmalloc@f1446c47ca Update to latest submodules, fix iniparser and critbit. 2015-07-12 10:38:01 +02:00
doc adding gruenbaer gprof output for historical preservation 2016-09-22 10:12:35 +02:00
iniparser@ecf956b980 Update to latest submodules, fix iniparser and critbit. 2015-07-12 10:38:01 +02:00
lunit@155c965944
process we do not need eressea.conf 2017-01-20 20:05:33 +01:00
quicklist@f837dd31e5 quicklist update, again. 2015-10-30 14:25:17 +01:00
res no starting equipment. 2017-01-22 08:05:19 +01:00
s game.start in eressea.ini overrides calendar 2017-01-22 05:18:32 +01:00
scripts make these modules optional 2017-01-22 11:38:01 +01:00
se Merge branch 'develop' into feature/bug-1588-magicpower-limit 2015-08-06 19:16:05 +02:00
share fix linux build 2016-02-13 13:56:49 +01:00
src no starting equipment. 2017-01-22 08:05:19 +01:00
storage@2117191d4a new storage module (without textstore and snprintf) 2016-11-26 07:24:19 +01:00
support
tests syntax error (bash functions are hard). 2016-09-17 20:35:41 +02: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 move orders-accept configuration to eressea.ini 2017-01-20 08:32:31 +01:00
configure
LICENSE
Makefile
README.md
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

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.