blob: e8a42abaacb6b327ed05af0f5fc0b0f103c70121 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
import qbs
import qbs.FileInfo
CppApplication {
name: "tutorial2"
condition: Qt.testlib.present && Qt.widgets.present
Depends { name: "Qt.testlib"; required: false }
Depends { name: "Qt.widgets"; required: false }
files: [
"testqstring.cpp",
]
Group {
fileTagsFilter: ["application"]
qbs.install: true
qbs.installDir: FileInfo.joinPaths(Qt.core.examplesInstallDir, "qtestlib", "tutorial2")
}
}
|