File: qmake-qt5.1

package info (click to toggle)
qtbase-opensource-src 5.15.15%2Bdfsg-6
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 350,700 kB
  • sloc: cpp: 2,089,913; ansic: 336,851; xml: 115,491; python: 9,447; java: 7,499; asm: 4,023; perl: 2,047; sh: 2,037; yacc: 1,687; lex: 1,333; javascript: 878; makefile: 273; objc: 70
file content (113 lines) | stat: -rw-r--r-- 2,668 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
.TH QMAKE 1 "2017-04-09" "The Qt Company Ltd."
.SH NAME
qmake \- cross-platform makefile generator for Qt

.SH SYNOPSIS
.B qmake
.I "[mode] [options] [files]"
.br
.SH "DESCRIPTION"
.B QMake
has two modes, one mode for generating project files based on some
heuristics, and the other for generating makefiles. Normally you
shouldn't need to specify a mode, as makefile generation is the default
mode for qmake, but you may use this to test qmake on an existing
project.

.SH MODE
.TP
.B "\-project"
Put qmake into project file generation mode. In this mode qmake
interprets files as files to be built, defaults to *.c; *.ui; *.y; *.l;
*.ts; *.xlf; *.qrc; *.h; *.hpp; *.hh; *.hxx; *.H; *.cpp; *.cc; *.cxx; *.C.
.TP
.B "\-makefile"
Put qmake into makefile generation mode (default). In this mode qmake
interprets files as project files to be processed, if skipped qmake will
try to find a project file in your current working directory.

.SH WARNINGS OPTIONS
.TP
.BI "\-Wnone"
Turn off all warnings; specific ones may be re-enabled by later \-W options
.TP
.BI "\-Wall"
Turn on all warnings
.TP
.BI "\-Wparser"
Turn on parser warnings
.TP
.BI "\-Wlogic"
Turn on logic warnings (on by default)
.TP
.BI "\-Wdeprecated"
Turn on deprecation warnings (on by default)

.SH OPTIONS
.TP
.BI "\-o file"
Write output to file
.TP
.BI "\-d"
Increase debug level
.TP
.BI "\-t templ"
Overrides TEMPLATE as \fBtempl\fR
.TP
.BI "\-tp prefix"
Overrides TEMPLATE so that prefix is prefixed into the value
.TP
.BI "\-help"
Displays a help text
.TP
.BI "\-v"
Version information
.TP
.BI "\-after"
All variable assignments after this will be parsed after [files]
.TP
.BI "\-norecursive"
Do not do a recursive search
.TP
.BI "\-recursive"
Do a recursive search
.TP
.BI "\-set <prop> <value>"
Set persistent property
.TP
.BI "\-unset <prop>"
Unset persistent property
.TP
.BI "\-query <prop>"
Query persistent property. Show all if <prop> is empty.
.TP
.BI "\-qtconf file"
Use \fBfile\fR instead of looking for qt.conf
.TP
.BI "\-cache file"
Use \fBfile\fR as cache [makefile mode only]
.TP
.BI "\-spec spec"
Use \fBspec\fR as QMAKESPEC [makefile mode only]
.TP
.BI "\-nocache"
Do not use a cache file [makefile mode only]
.TP
.BI "\-nodepend"
Do not generate dependencies [makefile mode only]
.TP
.BI "\-nomoc"
Do not generate moc targets [makefile mode only]
.TP
.BI "\-nopwd"
Do not look for files in pwd [project mode only]

.SH SEE ALSO
.PP
.BR /usr/share/qt5/doc/qmake/qmake-manual.html,
.BR assistant (1)
.SH AUTHOR
This manual page was written by Brian Nelson <pyro@debian.org> based on
the output of
.B "qmake -help".
Frederik Schwarzer <schwarzerf@gmail.com> updated it for Qt 4.5.2.