summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorThiago Macieira <thiago.macieira@nokia.com>2009-10-19 08:17:34 (GMT)
committerThiago Macieira <thiago.macieira@nokia.com>2009-10-19 08:17:34 (GMT)
commit5552e1c6604d4aee42d90050136085a27c8d112b (patch)
tree7daede972f3538df3ecb4c083aceb30416df1ec9 /doc
parentaf1fa7fe766980210d7363c1559197f34b10d834 (diff)
parent10a437f02966ad0963b66585cc2ff6210b995f18 (diff)
downloadQt-5552e1c6604d4aee42d90050136085a27c8d112b.zip
Qt-5552e1c6604d4aee42d90050136085a27c8d112b.tar.gz
Qt-5552e1c6604d4aee42d90050136085a27c8d112b.tar.bz2
Merge branch '4.6'
Diffstat (limited to 'doc')
-rw-r--r--doc/src/deployment/deployment.qdoc25
1 files changed, 25 insertions, 0 deletions
diff --git a/doc/src/deployment/deployment.qdoc b/doc/src/deployment/deployment.qdoc
index 76f3966..e0366bf 100644
--- a/doc/src/deployment/deployment.qdoc
+++ b/doc/src/deployment/deployment.qdoc
@@ -346,6 +346,7 @@
are many ways to solve this:
\list
+
\o You can install the Qt libraries in one of the system
library paths (e.g. \c /usr/lib on most systems).
@@ -805,6 +806,30 @@
compiler version against the same C runtime version. This prevents
deploying errors caused by different versions of the C runtime libraries.
+ \section2 Visual Studio 2008 And Manual Installs
+
+ As well as the above details for VS 2005 and onwards, Visual Studio 2008
+ applications may have problems when deploying manually, say to a USB
+ stick.
+
+ The recommended procedure is to configure Qt with the \c -plugin-manifests
+ option using the 'configure' tool. Then follow the \l {http://msdn.microsoft.com/en-us/library/ms235291(VS.80).aspx}{guidelines}
+ for manually deploying private assemblies.
+
+ In brief the steps are
+
+ \list 1
+
+ \o create a folder structure on the development computer that will match the target USB stick directory structure, for example '\\app' and for your dlls, '\\app\\lib'.
+
+ \o on the development computer, from the appropriate 'redist' folder copy over Microsoft.VC80.CRT and Microsoft.VC80.MFC to the directories '\\app' and '\\app\\lib' on the development PC.
+
+ \o xcopy the \\app folder to the target USB stick.
+ \endlist
+
+ Your application should now run. Also be aware that even with a service
+ pack installed the Windows DLLs that are linked to will be the defaults. See
+ the information on \l {http://msdn.microsoft.com/en-us/library/cc664727.aspx}{how to select the appropriate target DLLs}.
\section1 Application Dependencies