Files
qt-creator/tests/auto/extensionsystem/pluginspec/test.qbs
Christian Kandeler 153bfbba0e qbs project files: Do not use "base" inside groups.
Change-Id: Ifd3df06840b9bcf06ca8c21b62e67a9decd88bee
Reviewed-by: Joerg Bornemann <joerg.bornemann@theqtcompany.com>
2015-07-07 14:53:38 +00:00

47 lines
1.2 KiB
QML

import qbs
QtcAutotest {
name: "ExtensionSystem pluginspec autotest"
Depends { name: "Aggregation" }
Depends { name: "ExtensionSystem" }
Group {
name: "Sources"
files: "tst_pluginspec.cpp"
cpp.defines: outer.concat([
'PLUGIN_DIR="' + destinationDirectory + '"',
'PLUGINSPEC_DIR="' + sourceDirectory + '"'
])
}
Group {
id: testSpecsGroup
name: "test specs"
files: [
"testspecs/simplespec.json",
"testspecs/simplespec_experimental.json",
"testspecs/spec1.json",
"testspecs/spec2.json",
"testspecs/spec_wrong2.json",
"testspecs/spec_wrong3.json",
"testspecs/spec_wrong4.json",
"testspecs/spec_wrong5.json",
]
}
Group {
id: testDependenciesGroup
name: "test dependencies"
files: [
"testdependencies/spec1.json",
"testdependencies/spec2.json",
"testdependencies/spec3.json",
"testdependencies/spec4.json",
"testdependencies/spec5.json",
]
}
Group {
id: specGroup
name: "spec"
files: ["testdir/spec.json"]
}
}