1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
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: []
}
}
|