diff --git a/doc/Manual.html b/doc/Manual.html
index 2dc0e03c..ed1ce3e7 100644
--- a/doc/Manual.html
+++ b/doc/Manual.html
@@ -448,7 +448,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.<
LameXP is currently being developed and built using the following development tools and libraries:
Visual Studio 2013 Update-4, running on Windows 7 with Service Pack 1
-Qt libraries 4.8.6 for Windows (pre-compiled Qt libraries for Visual Studio 2013 can be found here)
+Qt libraries 4.8.7 for Windows (our pre-compiled Qt libraries for Visual Studio 2013 can be found here)
Windows Platform SDK v7.1A, included with Visual Studio 2013 or Visual Studio 2012
The minimum supported build platform is Windows 7 (x86 and x64)
@@ -474,10 +474,16 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.<
Download and extract the Qt 4.8.x source code package (e.g. to C:\QtSources\4.8.x
)
Edit the file mkspecs\win32-msvc2010\qmake.conf
from your Qt Sources directory as follows:
-Old: QMAKE_CFLAGS_RELEASE = -O2 -MD
-New: QMAKE_CFLAGS_RELEASE = -O2 -MT <more optimization flags here>
-Old: QMAKE_CFLAGS_RELEASE_WITH_DEBUGINFO += -O2 -MD -Zi
-New: QMAKE_CFLAGS_RELEASE_WITH_DEBUGINFO += -O2 -MT -Zi <more optimization flags here>
+Edit #1:
+
+- ⇐
QMAKE_CFLAGS_RELEASE = -O2 -MD
+- ⇒
QMAKE_CFLAGS_RELEASE = -O2 -MT <more optimization flags here>
+
+Edit #2:
+
+- ⇐
QMAKE_CFLAGS_RELEASE_WITH_DEBUGINFO += -O2 -MD -Zi
+- ⇒
QMAKE_CFLAGS_RELEASE_WITH_DEBUGINFO += -O2 -MT -Zi <more optimization flags here>
+
Open a new command window (cmd.exe
) – use this very same console for all upcoming steps!
Add Strawberry Perl to your PATH (e.g. set PATH=C:\strawberry\perl\bin;%PATH%
)
diff --git a/doc/Manual.md b/doc/Manual.md
index ced640b4..707057a3 100644
--- a/doc/Manual.md
+++ b/doc/Manual.md
@@ -602,7 +602,7 @@ LameXP is currently being developed and built using the following development to
* [Visual Studio 2013 Update-4](http://www.visualstudio.com/en-us/downloads/download-visual-studio-vs.aspx), running on Windows 7 with Service Pack 1
-* [Qt libraries 4.8.6](http://download.qt.io/archive/qt/4.8/) for Windows (pre-compiled Qt libraries for Visual Studio 2013 can be found [**here**](http://sourceforge.net/projects/lamexp/files/Miscellaneous/Qt%20Libraries/))
+* [Qt libraries 4.8.7](http://download.qt.io/archive/qt/4.8/) for Windows (our *pre-compiled* Qt libraries for Visual Studio 2013 can be found [**here**](http://sourceforge.net/projects/lamexp/files/Miscellaneous/Qt%20Libraries/))
* Windows Platform SDK v7.1A, included with Visual Studio 2013 or Visual Studio 2012
@@ -637,10 +637,12 @@ In order to create a "fully static" build of LameXP, i.e. a build that does *not
4. Edit the file ``mkspecs\win32-msvc2010\qmake.conf`` from your Qt Sources directory as follows:
- + ``Old: QMAKE_CFLAGS_RELEASE = -O2 -MD``
- + ``New: QMAKE_CFLAGS_RELEASE = -O2 -MT ``
- + ``Old: QMAKE_CFLAGS_RELEASE_WITH_DEBUGINFO += -O2 -MD -Zi``
- + ``New: QMAKE_CFLAGS_RELEASE_WITH_DEBUGINFO += -O2 -MT -Zi ``
+ * Edit #1:
+ + ⇐ ``QMAKE_CFLAGS_RELEASE = -O2 -MD``
+ + ⇒ ``QMAKE_CFLAGS_RELEASE = -O2 -MT ``
+ * Edit #2:
+ + ⇐ ``QMAKE_CFLAGS_RELEASE_WITH_DEBUGINFO += -O2 -MD -Zi``
+ + ⇒ ``QMAKE_CFLAGS_RELEASE_WITH_DEBUGINFO += -O2 -MT -Zi ``
5. Open a new command window (``cmd.exe``) – use this very same console for all upcoming steps!