summaryrefslogtreecommitdiffstats
path: root/qmake/doc/src
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@digia.com>2014-07-24 10:22:48 +0200
committerChristian Kandeler <christian.kandeler@digia.com>2014-07-25 09:24:39 +0200
commit3a9763d3492ef9c26a63c86e8a024fab3ce5807a (patch)
tree93d73adb05f70b25887ec9f7e1dcc7d20c4c69a7 /qmake/doc/src
parentc94bf2cfbae06878857f2018367a1c2dff399d80 (diff)
qmake: Document the "aux" template type.
Better late than never. Change-Id: If3bbeb4dfe3a8d49ceb02d9c2d0f2eff71595105 Reviewed-by: Leena Miettinen <riitta-leena.miettinen@digia.com> Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com>
Diffstat (limited to 'qmake/doc/src')
-rw-r--r--qmake/doc/src/qmake-manual.qdoc12
1 files changed, 12 insertions, 0 deletions
diff --git a/qmake/doc/src/qmake-manual.qdoc b/qmake/doc/src/qmake-manual.qdoc
index 2f43c8ad1f..58441064ad 100644
--- a/qmake/doc/src/qmake-manual.qdoc
+++ b/qmake/doc/src/qmake-manual.qdoc
@@ -321,6 +321,12 @@
\header \li Template \li qmake Output
\row \li app (default) \li Makefile to build an application.
\row \li lib \li Makefile to build a library.
+ \row \li aux \li Makefile to build nothing. Use this if no compiler needs to
+ be invoked to create the target, for instance because your
+ project is written in an interpreted language.
+ \note This template type is only available for Makefile-based
+ generators. In particular, it will not work with the vcxproj and
+ Xcode generators.
\row \li subdirs \li Makefile containing rules for the
subdirectories specified using the \l{SUBDIRS}
variable. Each subdirectory must contain its own project file.
@@ -2324,6 +2330,12 @@
\row \li subdirs \li Creates a Makefile for building targets in subdirectories.
The subdirectories are specified using the \l{#SUBDIRS}{SUBDIRS}
variable.
+ \row \li aux \li Creates a Makefile for not building anything. Use this if no compiler
+ needs to be invoked to create the target, for instance because your
+ project is written in an interpreted language.
+ \note This template type is only available for Makefile-based
+ generators. In particular, it will not work with the vcxproj and
+ Xcode generators.
\row \li vcapp \li Windows only. Creates an application project for
Visual Studio. See \l{Creating Visual Studio Project Files} for more
information.