summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKeith Isdale <keith.isdale@nokia.com>2009-07-03 06:46:54 (GMT)
committerKeith Isdale <keith.isdale@nokia.com>2009-07-03 06:46:54 (GMT)
commit1752e03a97cc16dd653d68d5a4bcf24024c59980 (patch)
tree98a3aed397d3ca1133ee9a7eeb26deb6fdb2f59d
parent1866485e46039d51ea78a6d672b678aa02f68eef (diff)
downloadQt-1752e03a97cc16dd653d68d5a4bcf24024c59980.zip
Qt-1752e03a97cc16dd653d68d5a4bcf24024c59980.tar.gz
Qt-1752e03a97cc16dd653d68d5a4bcf24024c59980.tar.bz2
Do not specify the output file when generating Visual Studio Project
Files files with qmake. The correct file extension for generated file is best left to qmake to decide.
-rw-r--r--doc/src/snippets/code/doc_src_qmake-manual.qdoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/snippets/code/doc_src_qmake-manual.qdoc b/doc/src/snippets/code/doc_src_qmake-manual.qdoc
index edb66bc..82c710d 100644
--- a/doc/src/snippets/code/doc_src_qmake-manual.qdoc
+++ b/doc/src/snippets/code/doc_src_qmake-manual.qdoc
@@ -689,7 +689,7 @@ qmake -o Makefile hello.pro
//! [115]
-qmake -tp vc -o hello.dsp hello.pro
+qmake -tp vc hello.pro
//! [115]