Fork vom Github-Repository von eressea/server
Go to file
Enno Rehling 3660c47afb remove os.[hc] in favor of generated config.h
new cmake files to find lua
2014-01-01 19:14:26 +01:00
cJSON@43241a78df split the cflags settings over more files 2013-05-04 17:29:39 -07:00
cmake@ddd0136d4e remove os.[hc] in favor of generated config.h 2014-01-01 19:14:26 +01:00
core remove os.[hc] in favor of generated config.h 2014-01-01 19:14:26 +01:00
critbit@25265530e7 upgrade submodules to current version 2013-12-26 23:04:06 +01:00
crypto@dfa8a32257 update to new version of crypto library 2013-01-21 22:42:31 -08:00
cutest@30c0fed288 upgrade submodules to current version 2013-12-26 23:04:06 +01:00
dlmalloc@4292cd5e81 update the arda server to use submodules and new cmake layout 2012-06-07 12:44:25 -07:00
doc undo CRLF crazy 2010-08-08 09:40:42 +02:00
game fix the default arda server's configuration 2013-12-27 01:58:35 +01:00
game-e2 Fix xml catalog references for E2 and E3. 2013-12-27 01:54:02 +01:00
game-e3 Fix xml catalog references for E2 and E3. 2013-12-27 01:54:02 +01:00
iniparser@537ba2f174 upgrade submodules to current version 2013-12-26 23:04:06 +01:00
lunit@155c965944 update the arda server to use submodules and new cmake layout 2012-06-07 12:44:25 -07:00
quicklist@25ac9a7bf0 upgrade submodules to current version 2013-12-26 23:04:06 +01:00
res E3 hatte keine flammenschwerter 2013-12-27 05:47:11 +01:00
scripts Fixing some last holdouts from the eressea->core rename. 2013-12-30 09:29:18 +01:00
src fix gcc errors, mostly reading unsigned values. 2013-12-31 10:29:00 +01:00
storage@af834a24aa updated submodule 2013-12-31 10:35:16 +01:00
.gitignore correct linker flags for picking visual studio runtime library. 2013-12-28 23:01:51 -08:00
.gitmodules use the storage submodule everywhere. 2013-12-31 01:06:28 -08:00
CMakeLists.txt fix gcc errors, mostly reading unsigned values. 2013-12-31 10:29:00 +01:00
LICENSE update makefile to new structure 2012-06-01 16:36:04 -07:00
Makefile update the arda server to use submodules and new cmake layout 2012-06-07 12:44:25 -07:00
README.md correct linker flags for picking visual studio runtime library. 2013-12-28 23:01:51 -08:00
config.h.in fix gcc errors, mostly reading unsigned values. 2013-12-31 10:29:00 +01:00
configure confusion, merge latest changes 2013-02-23 17:27:50 -08:00

README.md

What is this?

This repository contains an 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 git://github.com/eressea/server.git
cd server
git submodule update --init
./configure

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.