Project QML Type
Represents a collection of products and properties. More...
Import Statement: | import QbsLanguageItems . |
Properties
- buildDirectory : path
- condition : bool
- minimumQbsVersion : string
- name : string
- profile : string
- qbsSearchPaths : stringList
- references : pathList
- sourceDirectory : path
Detailed Description
A Project item represents a collection of of products. In a non-trivial project, these products are typically defined in their own files and referenced in the main project file:
Project { references: [ "product1/product1.qbs", "product2/product2.qbs" ] }
Any property prop
attached to this item is available in sub-items as project.prop
.
While the root of the item hierarchy is always a Project, this kind of item can also appear further down the hierarchy. Such sub-projects are usually introduced to group products. See SubProject for details.
Note: If your project consists of only one product, the Project item can be omitted.
Property Documentation
Whether the project is enabled. If false
, no products or sub-projects will be collected.
Default: true
The minimum version of Qbs that is needed to build this project.
Default: "1.3.0"
The project name. Only relevant when displaying a project tree in an IDE, for example.
Default: The basename of the file that defines the project.
The top-level profile for building the project. This property is set by Qbs when the project is being set up.
A list of paths that are searched for imports and modules in addition to the ones listed in preferences.qbsSearchPaths
. The value set here is merged with the value inherited from the parent project, if there is one. The result is inherited by all products in the project.
Default: An empty list
A list of files from which to import products. This is equivalent to defining the respective Product items directly under this Project item.
Default: An empty list
The directory where the file containing the top-level Project item is located.