forked from qt-creator/qt-creator
Amends c49de14c9d.
Change-Id: Ife37f6763b9039a46d63a7f1b4ef16fd0e787d01
Reviewed-by: David Schulz <david.schulz@qt.io>
21 lines
501 B
QML
21 lines
501 B
QML
import qbs.FileInfo
|
|
|
|
QtApplication {
|
|
name: "testapp"
|
|
Depends { name: "qtc" }
|
|
Depends { name: "Utils" }
|
|
Depends { name: "app_version_header" }
|
|
|
|
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",
|
|
]
|
|
}
|