forked from qt-creator/qt-creator
- Remove the unneeded Project item. - Remove the minimumQbsVersion property. It was originally added to suppress warnings in some ancient qbs. - Install applications to the bin/ directory by default. - Add main.qml to the files list in the QtQuick template. It is good practice to list all source files in a project file, and in this case it is even required for building against a static Qt. - Remove an unused file. Change-Id: I05f36e8ae64c0a2150639760db9630dd5d613ab9 Reviewed-by: Kai Koehne <kai.koehne@qt.io>
13 lines
245 B
QML
13 lines
245 B
QML
import qbs
|
|
|
|
CppApplication {
|
|
consoleApplication: true
|
|
files: "%{CFileName}"
|
|
|
|
Group { // Properties for the produced executable
|
|
fileTagsFilter: "application"
|
|
qbs.install: true
|
|
qbs.installDir: "bin"
|
|
}
|
|
}
|