author | unc0rr |
Wed, 12 Aug 2009 12:48:57 +0000 | |
changeset 2305 | a51f5f88f3cf |
parent 2220 | 110266ba2ef7 |
child 2355 | 5c0cada78ea6 |
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 |
6fbfee0e113a
Allow build without net game server: introduce -DWITH_SERVER configuration parameter
unc0rr
parents:
1006
diff
changeset
|
3 |
- FreePascal >= 2.2.0 |
2220 | 4 |
- OpenAL >= 1.0 |
470 | 5 |
- SDL >= 1.2.5 |
6 |
- SDL_net >= 1.2.5 |
|
7 |
- SDL_image >= 1.2 |
|
8 |
- SDL_ttf >= 2.0 |
|
2083 | 9 |
- CMake >= 2.6.0 |
2141 | 10 |
For server: |
11 |
- Glasgow Haskell Compiler 6.8.3 |
|
12 |
- dataenc package |
|
13 |
- hslogger package |
|
1006 | 14 |
|
470 | 15 |
1. Configure: |
1006 | 16 |
$ cmake . |
273 | 17 |
or |
2220 | 18 |
$ cmake -DCMAKE_BUILD_TYPE="Release" -DCMAKE_INSTALL_PREFIX="install_prefix" -DDATA_INSTALL_DIR="data_dir" . |
19 |
||
20 |
add -DWITH_SERVER=1 to compile net server; to create a relocatable bundle under Mac OS X you can do |
|
470 | 21 |
|
2220 | 22 |
$ cmake -DCMAKE_BUILD_TYPE="Release" -DBUNDLE=1 . |
23 |
||
24 |
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
|
25 |
|
470 | 26 |
2. Compile: |
478
487cc99af415
users should compile and configure package under user account :)
displacer
parents:
470
diff
changeset
|
27 |
$ make |
470 | 28 |
|
29 |
3. Install: |
|
273 | 30 |
# make install |
31 |
||
2220 | 32 |
|
457 | 33 |
That's all! Enjoy! |