diff --git a/CHANGELOG b/CHANGELOG
index abc2ec5a..af2c06b3 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,4 +1,7 @@
+
+#============================================================================================
+
OpenMesh 2.0-RC3 ( Rev 138 ):
* License
diff --git a/Doc/misc.docu b/Doc/misc.docu
index 403b6b5f..c1eb0885 100644
--- a/Doc/misc.docu
+++ b/Doc/misc.docu
@@ -70,8 +70,8 @@ Install the following external libraries / frameworks:
\section build_systems Chosing build system
OpenMesh can be built either using qmake (that already comes along
-with the qt framework) or cmake. Since both systems work and will be supported
-in future releases, the choice of what build system to use is left to the user.
+with the qt framework) or cmake. Both systems work and will be supported.
+We recommend the use of the cmake build system.
\section sec_compiling_unix Unix
@@ -79,14 +79,20 @@ in future releases, the choice of what build system to use is left to the user.
\subsection linux_using_cmake Compiling OpenMesh using CMake
In order to compile OpenMesh, create a directory named e.g. "build" in
-OpenMesh's root directory. Change to the newly created directory and type
+OpenMesh's root directory. Change to the newly created directory and type
cmake .. ## Generates the appropriate Makefiles
-make ## Builds the project (use 'make debug' to build debug version)
+make ## Builds the project
-The application will be found under "Build/bin" in the recently created build folder.
-Build also contains the shared objects needed by the application.
+You can choose the build type by using cmake with the flag
+-DCMAKE_BUILD_TYPE=(Debug|Release)
+The default is: Debug
+
+
+Everything will then be build in the Build subdirectory containing the libraries in lib and the binaries in bin.
+
+
\subsection linux_using_qmake Compiling OpenMesh using QMake
diff --git a/README b/README
index 86b08e7b..df246c51 100644
--- a/README
+++ b/README
@@ -2,21 +2,13 @@ OpenMesh, 2-0
~~~~~~~~~~~~~~~
0. Licence
+~~~~~~~~~~~~~~~
see LICENSE
1. Installing
~~~~~~~~~~~~~~
-Unpack the tar-ball to a suitable place and compile with:
+Unpack the tar-ball to a suitable place.
-qmake-qt4 ## Build Makefiles
-make ## Build project (use 'make debug' for debug version)
+A detailed build manual for Mac/Windows/Linux is in the Doc subdirectory.
-
-2. OpenMesh + STLport
-~~~~~~~~~~~~~~~~~~~~~~
-
-We tested the MS .NET with STLport 4.6 (with STLport iostream) and
-encountered on problem in OpenMesh/Core/IO/reader/OBJReader.cc.
-A workaround for 4.6 version of STLport has been applied. It might have
-to be adjusted for other STLport versions.