diff options
author | David Boddie <david.boddie@nokia.com> | 2010-11-04 15:52:42 +0100 |
---|---|---|
committer | David Boddie <david.boddie@nokia.com> | 2010-11-04 15:52:42 +0100 |
commit | f9aa09a43e38ad79d0cb19576d7e136db51d6b15 (patch) | |
tree | 3144c2ddad10bae23889f0d86332231978eb0202 /doc/src/snippets/code | |
parent | 7151ff10f7e2d3b8e92e9cfec8d5c8655bf21525 (diff) | |
download | qt4-tools-f9aa09a43e38ad79d0cb19576d7e136db51d6b15.tar.gz |
Doc: Added more hints for building Qt for Symbian on Linux.
Initial-review-and-suggestions-by: axis
Diffstat (limited to 'doc/src/snippets/code')
-rw-r--r-- | doc/src/snippets/code/doc_src_installation.qdoc | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/doc/src/snippets/code/doc_src_installation.qdoc b/doc/src/snippets/code/doc_src_installation.qdoc index 05935670f5..2e59db981d 100644 --- a/doc/src/snippets/code/doc_src_installation.qdoc +++ b/doc/src/snippets/code/doc_src_installation.qdoc @@ -301,11 +301,24 @@ make runonphone -s lib/Qt.sis //! [47] +//! [runonphone with device file path] +runonphone -s lib/Qt.sis -p /dev/ttyUSB1 +//! [runonphone with device file path] + //! [48] cd demos/embedded/fluidlauncher runonphone -s fluidlauncher.sis fluidlauncher.exe //! [48] +//! [make runonphone with options] +make runonphone "QT_RUN_ON_PHONE_OPTIONS=-p /dev/ttyUSB1" +//! [make runonphone with options] + +//! [make runonphone with preset environment variable] +export QT_RUN_ON_PHONE_OPTIONS="-p /dev/ttyUSB1" +make runonphone +//! [make runonphone with preset environment variable] + //! [49] cd myapp qmake |