Changed my email in the copyright statements.
[tagua/yd.git] / INSTALL
bloba52a98930bf6ef1ae2041d1744c5121edd239ac3
1 What you need
2 ==================
4   * A KDE4 development environment with kdelibs and libkdegames
5   * boost 1.34 (headers will suffice)
7 Further you will need GNU make, a working C++ compiler (e.g. gcc 3.4.x or later)
8 and CMake 2.4.7 or later.
10 The following packages are optional:
12   * lua (5.1.1, if it is not available you can use the internal copy)
14 Preparations
15 ==================
17 Setting up a KDE4 development environment:
19 Follow the tutorial at http://techbase.kde.org/Getting_Started/Build/KDE4
21 Compiling Tagua
22 ==================
24 Unpack the Tagua package, change to the package root directory, and type:
26 mkdir build
27 cd build
28 cmake -DCMAKE_INSTALL_PREFIX=$KDEDIR -DCMAKE_BUILD_TYPE=release ..
29 make -j2
30 make install
32 If you want tagua to be linked to system lua instead that the internall one,
33 add -DSYSTEM_LUA=1 to the command line, and optionally add -DLUA_PKG=xyz to
34 specify the pkg-config lua package.