forked from qt-creator/qt-creator
Change-Id: I5d439be4442ab5c41935534b93ebc9d6868cb880 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io> Reviewed-by: Eike Ziller <eike.ziller@qt.io>
22 lines
602 B
QML
22 lines
602 B
QML
import qbs.FileInfo
|
|
|
|
CppApplication {
|
|
Depends { name: "QmlJS" }
|
|
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")
|
|
}
|