Files
qt-creator/tests/auto/qml/qmlprojectmanager/fileformat/fileformat.qbs
Christian Stenger 590a6904b1 QmlDesigner: Fix qbs build and building with Qt6.2
Change-Id: Ic114c9eb830eed5cf0bef890007408694453791e
Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
2023-05-23 08:40:09 +00:00

27 lines
756 B
QML

import qbs
QtcAutotest {
name: "QmlProjectManager file format autotest"
Depends { name: "QmlJS" }
Depends { name: "Utils" }
property path fileFormatDir: project.ide_source_tree + "/src/plugins/qmlprojectmanager/buildsystem/projectitem"
files: "tst_fileformat.cpp"
Group {
name: "Files from QmlProjectManager"
prefix: product.fileFormatDir + '/'
files: [
"converters.cpp",
"converters.h",
"filefilteritems.cpp",
"filefilteritems.h",
"qmlprojectitem.cpp",
"qmlprojectitem.h",
]
}
cpp.includePaths: base.concat([fileFormatDir])
cpp.defines: base.concat([
'QT_CREATOR',
'SRCDIR="' + path + '"'
])
}