Fork vom Github-Repository von eressea/server
Go to file
Enno Rehling 528dd4b81f remove latin1 characters from some files
experimenting with .gitattributes some more
2014-03-06 19:12:12 -08:00
cJSON@43c04ad612 begin writing a map exporter 2014-03-06 07:15:43 -08:00
cmake@cd779ba36e begin writing a map exporter 2014-03-06 07:15:43 -08:00
core added a test for saving/loading descriptions (bug 1984). 2014-03-02 10:55:35 -08:00
critbit@9e186825e0 make submodules refer to public URLs 2014-01-04 01:23:58 +01:00
crypto@166fdc8c14 added a test for saving/loading descriptions (bug 1984). 2014-03-02 10:55:35 -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
s begin creating a make install target. 2014-03-02 12:20:49 -08:00
scripts fix a test that compared structs 2014-01-07 06:47:20 +01:00
src remove latin1 characters from some files 2014-03-06 19:12:12 -08:00
storage@ce14333daa remove the fallback password. 2014-01-01 20:29:08 -08:00
support - added `build.lua' script published by Enno. 2014-02-07 19:35:30 +01:00
.gitattributes remove latin1 characters from some files 2014-03-06 19:12:12 -08:00
.gitignore correct linker flags for picking visual studio runtime library. 2013-12-28 23:01:51 -08:00
.gitmodules begin writing a map exporter 2014-03-06 07:15:43 -08:00
CMakeLists.txt begin writing a map exporter 2014-03-06 07:15:43 -08:00
LICENSE update makefile to new structure 2012-06-01 16:36:04 -07:00
Makefile I am killing the core/ directory. 2014-02-18 05:45:00 +01: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 these tests are part of make test now 2014-02-21 23:17:48 -08:00
todo.md remove latin1 characters from some files 2014-03-06 19:12:12 -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.