forked from qt-creator/qt-creator
20 lines
458 B
QML
20 lines
458 B
QML
|
|
import qbs.FileInfo
|
||
|
|
|
||
|
|
QtApplication {
|
||
|
|
name: "testapp"
|
||
|
|
Depends { name: "qtc" }
|
||
|
|
Depends { name: "Utils" }
|
||
|
|
|
||
|
|
consoleApplication: true
|
||
|
|
cpp.cxxLanguageVersion: "c++17"
|
||
|
|
cpp.rpaths: project.buildDirectory + '/' + qtc.ide_library_path
|
||
|
|
|
||
|
|
install: false
|
||
|
|
destinationDirectory: project.buildDirectory + '/'
|
||
|
|
+ FileInfo.relativePath(project.ide_source_tree, sourceDirectory)
|
||
|
|
|
||
|
|
files: [
|
||
|
|
"main.cpp",
|
||
|
|
]
|
||
|
|
}
|