Files
qt-creator/tests/tools/qml-ast2dot/qml-ast2dot.qbs
Christian Stenger f720835680 Tests: Fix build
Change-Id: I6d9475bf2d95a1075d7a761f49d8edff89a30f78
Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
2024-04-18 09:52:28 +00:00

23 lines
632 B
QML

import qbs.FileInfo
CppApplication {
Depends { name: "QmlJS" }
Depends { name: "Utils" }
Depends { name: "Qt.gui" }
cpp.cxxLanguageVersion: "c++17"
consoleApplication: true
targetName: "qml-ast2dot"
builtByDefault: false
files: [
"main.cpp"
]
destinationDirectory: FileInfo.joinPaths(
FileInfo.path(project.buildDirectory + '/'
+ FileInfo.relativePath(project.ide_source_tree,
sourceDirectory)),
"qml-ast2dot")
}