summaryrefslogtreecommitdiffstats
path: root/README
diff options
context:
space:
mode:
authorTomi Korpipää <tomi.korpipaa@digia.com>2013-10-16 06:13:25 +0300
committerTomi Korpipää <tomi.korpipaa@digia.com>2013-10-16 08:43:53 +0300
commit49cf94ebaf09c29d7f5e0a2567854765dabcb4bc (patch)
tree5b16c0cfb60d654d8592c97db0d3931c3756d575 /README
parent82da3207517e0baa8f9c8e1bd8d8e18c248c2dc8 (diff)
README build instructions updated
Change-Id: I5f5c3bbf1ecd291ca0b31f7cfd591149c3ef2ed3 Change-Id: I5f5c3bbf1ecd291ca0b31f7cfd591149c3ef2ed3 Reviewed-by: Miikka Heikkinen <miikka.heikkinen@digia.com>
Diffstat (limited to 'README')
-rw-r--r--README22
1 files changed, 21 insertions, 1 deletions
diff --git a/README b/README
index ab2c93d1..f38040dc 100644
--- a/README
+++ b/README
@@ -13,12 +13,32 @@ System Requirements
Building
========
-Configure project with qmake and build project with make:
+Configure the project with qmake:
+ qmake
+
+After running qmake, build the project with make:
(Linux) make
(Windows with MinGw) mingw32-make
(Visual Studio) nmake
(OSX) make
+The above generates the default makefiles for your configuration, which is typically
+the release build if you are using precompiled binary Qt distribution. To build both
+debug and release, or one specifically, use one of the following qmake lines instead.
+
+For debug builds:
+ qmake CONFIG+=debug; make
+ or
+ qmake CONFIG+=debug_and_release; make debug
+
+For release builds:
+ qmake CONFIG+=release ; make
+ or
+ qmake CONFIG+=debug_and_release; make release
+
+For both builds
+ qmake CONFIG+="debug_and_release build_all"; make
+
If you want to install the module to your Qt directory use:
make install