forked from qt-creator/qt-creator
Task-number: QTCREATORBUG-12309 Change-Id: I3d6ebe84408427b5a4e499a6d38ef5f37711610e Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
13 lines
288 B
QML
13 lines
288 B
QML
import qbs
|
|
|
|
CppApplication {
|
|
type: "application" // To suppress bundle generation on Mac
|
|
consoleApplication: true
|
|
files: "main.%CppSourceSuffix%"
|
|
|
|
Group { // Properties for the produced executable
|
|
fileTagsFilter: product.type
|
|
qbs.install: true
|
|
}
|
|
}
|