blob: e32421e3b5fe57532b9a5d8578f018c693f36bbc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
import qbs.Utilities
QbsAutotest {
testName: "blackbox-windows"
Depends { name: "qbs_app" }
Depends { name: "qbs-setup-toolchains" }
Group {
name: "testdata"
prefix: "testdata-windows/"
files: ["**/*"]
fileTags: []
}
files: [
"../shared.h",
"tst_blackboxbase.cpp",
"tst_blackboxbase.h",
"tst_blackboxwindows.cpp",
"tst_blackboxwindows.h",
]
cpp.defines: base.concat(["SRCDIR=" + Utilities.cStringQuote(path)])
}
|