--- a/INSTALL Thu Jul 02 14:59:27 2009 +0000
+++ b/INSTALL Fri Jul 03 22:00:32 2009 +0000
@@ -1,9 +1,9 @@
To compile and install you need:
- Qt >= 4.4
- FreePascal >= 2.2.0
+ - OpenAL >= 1.0
- SDL >= 1.2.5
- SDL_net >= 1.2.5
- - SDL_mixer >= 1.2
- SDL_image >= 1.2
- SDL_ttf >= 2.0
- CMake >= 2.6.0
@@ -15,9 +15,13 @@
1. Configure:
$ cmake .
or
-$ cmake -DCMAKE_CXX_FLAGS="flags" -DCMAKE_INSTALL_PREFIX="install prefix" -DDATA_INSTALL_DIR="data dir" .
+$ cmake -DCMAKE_BUILD_TYPE="Release" -DCMAKE_INSTALL_PREFIX="install_prefix" -DDATA_INSTALL_DIR="data_dir" .
+
+add -DWITH_SERVER=1 to compile net server; to create a relocatable bundle under Mac OS X you can do
-add -DWITH_SERVER=1 to compile net server
+$ cmake -DCMAKE_BUILD_TYPE="Release" -DBUNDLE=1 .
+
+if you have QT installed but it is not found you can set it up with -DQT_QMAKE_EXECUTABLE="path_to_qmake"
2. Compile:
$ make
@@ -25,4 +29,5 @@
3. Install:
# make install
+
That's all! Enjoy!