2022-10-12 14:30:24 +02:00
|
|
|
import qbs.FileInfo
|
|
|
|
|
|
|
|
|
|
QtApplication {
|
|
|
|
|
name: "testapp"
|
|
|
|
|
Depends { name: "qtc" }
|
|
|
|
|
Depends { name: "Utils" }
|
2022-11-10 06:40:14 +01:00
|
|
|
Depends { name: "app_version_header" }
|
2022-10-12 14:30:24 +02:00
|
|
|
|
|
|
|
|
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",
|
|
|
|
|
]
|
|
|
|
|
}
|