diff --git a/Doxygen/Developer/building.docu b/Doxygen/Developer/building.docu
index 78ea8b92b2e4fe3bc27557d487c9f0cd9d432653..fecef6505c76015c4d476d38bb5e91b536d3b440 100644
--- a/Doxygen/Developer/building.docu
+++ b/Doxygen/Developer/building.docu
@@ -18,7 +18,6 @@
*
* \section bs Build System
* The build system uses cmake to generate all makefiles.
- * Since v1.0 RC2 it is recommended to use cmake as primary build system.
*
* \section build_cmake Building OpenFlipper using Cmake
*
@@ -41,10 +40,13 @@
*
Now call make to build OpenFlipper
*
*
- * To switch between debug and release build, use cmake -DCMAKE_BUILD_TYPE=Debug ..
- * Change install path: -DCMAKE_INSTALL_PREFIX=[path]
+ * To switch between debug and release build, use
+ * cmake -DCMAKE_BUILD_TYPE=Release ..
+ *
+ * To change the install path use
+ * -DCMAKE_INSTALL_PREFIX=[path]
*
- * The created application (binaries, libs and shared files) are to be found in the Build
+ * The created application (binaries, libs and shared files) are located in the Build
* directory.
*
* \subsection cmake_bwin Building OpenFlipper under Windows
@@ -86,15 +88,29 @@
* \subsection cmake_bmacos Building OpenFlipper under MacOS X
*
*
- * - First install the required libraries (see above)
+ * - First install the required libraries
+ * To get all required libraries you should use the macports project: http://www.macports.org/
+ *
+ * Install at least the following ports:
+ * qt4-mac
+ * glew
+ * glut
+ * cmake
+ *
+ * As additional ports we recommend the following
+ * ftgl
+ * fftw-3
+ * qwt52
+ * subversion
+ * doxygen
* - Extract the source code or get it via svn:
* svn co http://www-i8.informatik.rwth-aachen.de/svnrepo/OpenFlipper/branches/Free OpenFlipper
* - Create a build directory (e.g. build) in the toplevel directory:
mkdir build
- * - Change to the newly created directory
cd build
and type cmake ..
- * - Now call make to build OpenFlipper
+ * - Change to the newly created directory (
cd build
) and type cmake ..
or if you want to build in release mode type cmake -DCMAKE_BUILD_TYPE=Release ..
+ * - Now call make to build OpenFlipper
*
*
- * The created application bundle (that contains binaries, libs and shared files) is to be found in the Build
+ * The created application bundle (that contains binaries, libs and shared files) can be found in the Build
* directory.
*
* \section cmake_plugin Building OpenFlipper Plugins with CMake