From 49cf94ebaf09c29d7f5e0a2567854765dabcb4bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomi=20Korpip=C3=A4=C3=A4?= Date: Wed, 16 Oct 2013 06:13:25 +0300 Subject: README build instructions updated Change-Id: I5f5c3bbf1ecd291ca0b31f7cfd591149c3ef2ed3 Change-Id: I5f5c3bbf1ecd291ca0b31f7cfd591149c3ef2ed3 Reviewed-by: Miikka Heikkinen --- README | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) 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 -- cgit v1.2.3