summaryrefslogtreecommitdiffstats
path: root/src/doc/src/b2qt.qdoc
diff options
context:
space:
mode:
Diffstat (limited to 'src/doc/src/b2qt.qdoc')
-rw-r--r--src/doc/src/b2qt.qdoc22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/doc/src/b2qt.qdoc b/src/doc/src/b2qt.qdoc
index be4b8ba..c5808b8 100644
--- a/src/doc/src/b2qt.qdoc
+++ b/src/doc/src/b2qt.qdoc
@@ -636,6 +636,28 @@
connected device.
\li To build and run the project, click \inlineimage qtcreator-run.png
\endlist
+
+ \section1 Setting up an already existing project for deployment
+
+ The projects generated by Qt Creator will always have the correct settings
+ for deployment on the device or emulator. Existing projects may need some
+ changes however.
+
+ As a general rule, application binaries and content (like QML files) are
+ deployed under /data/user/qt/<APPLICATION_NAME>. This means that deployment
+ settings in .pro files like the following:
+
+ \code
+ target.path = ...
+ INSTALLS += target
+ \endcode
+
+ should be migrated to
+
+ \code
+ target.path = /data/user/qt/<APPLICATION_NAME>
+ INSTALLS += target
+ \endcode
*/
/*!