aboutsummaryrefslogtreecommitdiffstats
path: root/doc/reference/items/product.qdoc
blob: ab1ba45daeb6b159c0dbfdc7b3e4270c0efbb58b (plain)
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
/****************************************************************************
**
** Copyright (C) 2015 The Qt Company Ltd.
** Contact: http://www.qt.io/licensing
**
** This file is part of Qbs.
**
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms and
** conditions see http://www.qt.io/terms-conditions. For further information
** use the contact form at http://www.qt.io/contact-us.
**
** GNU Lesser General Public License Usage
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 2.1 or version 3 as published by the Free
** Software Foundation and appearing in the file LICENSE.LGPLv21 and
** LICENSE.LGPLv3 included in the packaging of this file.  Please review the
** following information to ensure the GNU Lesser General Public License
** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** In addition, as a special exception, The Qt Company gives you certain additional
** rights.  These rights are described in The Qt Company LGPL Exception
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
****************************************************************************/
/*!
    \contentspage list-of-items.html
    \previouspage probe-item.html
    \page product-item.html
    \nextpage project-item.html
    \ingroup list-of-items

    \title Product Item
    \brief Represents the result of a build process.

    A \e product typically represents the result of a build process. It specifies a set of
    input and output files and a way to transform the former into the latter. For example, the
    following product sets up a very simple C++ application:
    \code
    Product {
        name: "helloworld"
        type: "application"
        files: "main.cpp"
        Depends { name: "cpp" }
    }
    \endcode
    The \c type property specifies what will be built (an executable). The \c files property specifies
    the input files (one C++ source file), and the \c Depends item pulls in the logic from the \c cpp module
    about how to do the necessary transformations.
    For some often-used types of products, \QBS pre-defines special derived items that save
    users some typing. These are:
    \list
        \li Application
        \li CppApplication
        \li DynamicLibrary
        \li StaticLibrary
    \endlist
    Therefore, the above example could also be written like this:
    \code
    CppApplication {
        name: "helloworld"
        files: "main.cpp"
    }
    \endcode
    Any property \c prop attached to this item is available in sub-items as \c product.prop, as
    well as in modules that are loaded from this product.

    \table
        \header
            \li Property
            \li Type
            \li Default
            \li Description
        \row
            \li builtByDefault
            \li bool
            \li true
            \li If false, the product will only be built if this is explicitly requested,
                either by listing the product name as an argument to \c --products or by giving
                the \c build command the \c --all-products option.
        \row
            \li condition
            \li bool
            \li true
            \li If false, the product will not be built.
        \row
            \li name
            \li string
            \li empty string
            \li The name of the product. Used to identify the product in a \c Depends item, for
                example. The value of this property must be a simple JavaScript expression that
                does not depend on module properties or values that are non-local to this product.
                \code
                CppApplication {
                    name: "hello" + "world"                     // valid
                }
                CppApplication {
                    name: "app_for_" + qbs.targetOS.join("_")   // invalid
                }
                \endcode
                To change the name of your product's target artifact, modify \c{Product.targetName}
                instead.
        \row
            \li profiles
            \li stringList
            \li \c{[project.profile]}
            \li The profiles for which the product should be built. For each profile listed here,
                one instance of the product will be built according to the properties set in
                the respective profile.
                This property is only relevant for projects that require products being built for
                different architectures. Otherwise it can be left at its default value.
        \row
            \li type
            \li stringList
            \li empty list
            \li The file tags matching the product's target artifacts.
        \row
            \li targetName
            \li string
            \li \c{name} with illegal file name characters replaced by underscores
            \li The base file name of the product's target artifacts.
        \row
            \li destinationDirectory
            \li string
            \li product.buildDirectory
            \li The directory where the target artifacts will be located. If a relative path is
                given, the base directory will be \c project.buildDirectory.
        \row
            \li files
            \li stringList
            \li empty list
            \li A list of source files. Syntactic sugar to save a \c Group item for simple products.
        \row
            \li excludeFiles
            \li stringList
            \li empty list
            \li A list of source files not to include. Useful with wildcards.
                For more information, see \l {Group Item}.

        \row
            \li consoleApplication
            \li bool
            \li linker-dependent
            \li If true, a console application is generated. If false, a GUI application is generated.
                Only takes effect on Windows.
                This property also influences the default application type on Apple platforms.
                If true, an application bundle is generated. If false, a normal executable is
                generated.
        \row
            \li qbsSearchPaths
            \li stringList
            \li project.qbsSearchPaths
            \li See the documentation of the \l {Project Item} property of the same name.
                The value set here will be merged with the one inherited from
                the project.
        \row
            \li version
            \li string
            \li undefined
            \li The version number of the product. Used in shared library filenames and generated
                Info.plist files in Apple application and framework bundles, for example.
    \endtable

    The following properties are automatically set by \QBS and cannot be changed by the user:

    \table
        \header
            \li Property
            \li Type
            \li Description
        \row
            \li buildDirectory
            \li path
            \li The build directory for this product. This is the directory where generated files
                are placed.
        \row
            \li profile
            \li string
            \li The profile for building this particular instance of the product. Derived
                automatically from the \c profiles property.
        \row
            \li sourceDirectory
            \li path
            \li The source directory for this product. This is the directory of the file where this
                product is defined.
    \endtable
*/