forked from qt-creator/qt-creator
Change-Id: Ia08f2127cdb25785cf313ec0a31a3d9775161c9b Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
13 lines
280 B
QML
13 lines
280 B
QML
import qbs
|
|
|
|
CppApplication {
|
|
type: "application" // To suppress bundle generation on Mac
|
|
consoleApplication: true
|
|
files: "%{CppFileName}"
|
|
|
|
Group { // Properties for the produced executable
|
|
fileTagsFilter: product.type
|
|
qbs.install: true
|
|
}
|
|
}
|