blob: 21ff86a90dc835007b0bb81c92be2ea1704b2600 (
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.Utilities
QbsAutotest {
testName: "api"
files: ["../shared.h", "tst_api.h", "tst_api.cpp"]
cpp.defines: base.concat([
"SRCDIR=" + Utilities.cStringQuote(path),
"QBS_RELATIVE_LIBEXEC_PATH=" + Utilities.cStringQuote(qbsbuildconfig.relativeLibexecPath),
"QBS_RELATIVE_SEARCH_PATH=" + Utilities.cStringQuote(qbsbuildconfig.relativeSearchPath),
"QBS_RELATIVE_PLUGINS_PATH=" + Utilities.cStringQuote(qbsbuildconfig.relativePluginsPath)
])
Group {
name: "testdata"
prefix: "testdata/"
files: ["**/*"]
fileTags: []
}
}
|