summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoraxis <qt-info@nokia.com>2009-11-24 13:36:08 (GMT)
committerJason McDonald <jason.mcdonald@nokia.com>2009-11-25 00:47:04 (GMT)
commit0cfa91c0665202a92861f4893238b60de40a0553 (patch)
treec3d7f8853ad837808053aebed81d686e5f65af40
parent53d57395349345c8e7e24ff2be13503f5704c592 (diff)
downloadQt-0cfa91c0665202a92861f4893238b60de40a0553.zip
Qt-0cfa91c0665202a92861f4893238b60de40a0553.tar.gz
Qt-0cfa91c0665202a92861f4893238b60de40a0553.tar.bz2
Added some missing build instructions for abld.
WebKit will not build unless the mentioned variable is set. RevBy: Aleksandar Sasha Babic (cherry picked from commit 4817debee23a72f44eedbb8f33b6b611b5161174)
-rw-r--r--doc/src/getting-started/installation.qdoc7
-rw-r--r--doc/src/snippets/code/doc_src_installation.qdoc4
2 files changed, 11 insertions, 0 deletions
diff --git a/doc/src/getting-started/installation.qdoc b/doc/src/getting-started/installation.qdoc
index 725ae78..b5f8c16 100644
--- a/doc/src/getting-started/installation.qdoc
+++ b/doc/src/getting-started/installation.qdoc
@@ -599,6 +599,13 @@ If you are using pre-built binaries, follow the instructions given in the
emulator. This is done by locating the Carbide.c++ submenu on the Start
menu, and choosing "Configure environment for WINSCW command line".
+ If you are planning to use abld (the default build system that comes with the S60 SDK)
+ to build Qt, you will also need to set the following environment variable:
+
+ \snippet doc/src/snippets/code/doc_src_installation.qdoc 33
+
+ This is not necessary for other applications, only when building Qt.
+
\o Configure Qt
To configure Qt for the Symbian platform, do:
diff --git a/doc/src/snippets/code/doc_src_installation.qdoc b/doc/src/snippets/code/doc_src_installation.qdoc
index 0178c53..c6aa6c7 100644
--- a/doc/src/snippets/code/doc_src_installation.qdoc
+++ b/doc/src/snippets/code/doc_src_installation.qdoc
@@ -216,3 +216,7 @@ bldmake bldfiles
abld build winscw udeb
abld build gcce urel
//! [32]
+
+//! [33]
+SYMBIANBUILD_DEPENDENCYOFF=1
+//! [33]