author | koda |
Sun, 26 Sep 2010 17:02:44 +0200 | |
changeset 3906 | c5da430cb3fd |
parent 3322 | 80afcb97eb46 |
child 4274 | 8292066cb45c |
permissions | -rw-r--r-- |
273 | 1 |
To compile and install you need: |
1415
6fbfee0e113a
Allow build without net game server: introduce -DWITH_SERVER configuration parameter
unc0rr
parents:
1006
diff
changeset
|
2 |
- Qt >= 4.4 |
3322 | 3 |
- FreePascal >= 2.2.4 |
470 | 4 |
- SDL >= 1.2.5 |
5 |
- SDL_net >= 1.2.5 |
|
2549 | 6 |
- SDL_mixer >= 1.2 |
470 | 7 |
- SDL_image >= 1.2 |
8 |
- SDL_ttf >= 2.0 |
|
2083 | 9 |
- CMake >= 2.6.0 |
3301 | 10 |
- Lua >= 5.1.0 |
2141 | 11 |
For server: |
2355 | 12 |
- Glasgow Haskell Compiler 6.10 |
2141 | 13 |
- dataenc package |
14 |
- hslogger package |
|
2355 | 15 |
- utf8-string package |
1006 | 16 |
|
470 | 17 |
1. Configure: |
1006 | 18 |
$ cmake . |
273 | 19 |
or |
2220 | 20 |
$ cmake -DCMAKE_BUILD_TYPE="Release" -DCMAKE_INSTALL_PREFIX="install_prefix" -DDATA_INSTALL_DIR="data_dir" . |
21 |
||
22 |
add -DWITH_SERVER=1 to compile net server; to create a relocatable bundle under Mac OS X you can do |
|
470 | 23 |
|
2220 | 24 |
$ cmake -DCMAKE_BUILD_TYPE="Release" -DBUNDLE=1 . |
25 |
||
26 |
if you have QT installed but it is not found you can set it up with -DQT_QMAKE_EXECUTABLE="path_to_qmake" |
|
1415
6fbfee0e113a
Allow build without net game server: introduce -DWITH_SERVER configuration parameter
unc0rr
parents:
1006
diff
changeset
|
27 |
|
470 | 28 |
2. Compile: |
478
487cc99af415
users should compile and configure package under user account :)
displacer
parents:
470
diff
changeset
|
29 |
$ make |
470 | 30 |
|
31 |
3. Install: |
|
273 | 32 |
# make install |
33 |
||
2220 | 34 |
|
457 | 35 |
That's all! Enjoy! |