aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJake Petroules <jake.petroules@petroules.com>2013-10-19 11:13:08 -0400
committerJoerg Bornemann <joerg.bornemann@digia.com>2013-10-21 15:02:04 +0200
commite3261e06181ea9741c31e7bb2d4a2553d885e54f (patch)
treeca381807705feb06eb3ff749d6374b6249596c08
parent1d1842a2873357dcfd32697fead36c4506dc1b4c (diff)
Improve the documentation on building Qbs.
Now lists the recognized qmake CONFIG options. Change-Id: I183f97624566870e6b4d59d0c9e7f4fcb266e54f Reviewed-by: Leena Miettinen <riitta-leena.miettinen@digia.com> Reviewed-by: Christian Kandeler <christian.kandeler@digia.com>
-rw-r--r--doc/qbs.qdoc23
1 files changed, 16 insertions, 7 deletions
diff --git a/doc/qbs.qdoc b/doc/qbs.qdoc
index 40578790b..91ff72578 100644
--- a/doc/qbs.qdoc
+++ b/doc/qbs.qdoc
@@ -135,16 +135,25 @@
\title Building Qbs
- To build Qbs:
+ To build Qbs, enter the following command:
- \list 1
+ \code
+ qmake -r qbs.pro && make
+ \endcode
- \li Enter the following command:
- \code
- qmake -r qbs.pro && make
- \endcode
+ \section1 Configure Options
- \endlist
+ Qbs recognizes the following qmake CONFIG options to customize the build:
+
+ \table
+ \header \li Option \li Notes
+ \row \li all_tests \li Enable additional autotests.
+ \row \li disable_rpath \li Disable the use of rpath. This can be used when packaging
+ Qbs for distributions which do not permit the use of rpath,
+ such as Fedora.
+ \row \li qbs_no_dev_install \li Exclude header files from installation, that is, perform a
+ non-developer build.
+ \endtable
*/