qbs build: Add the possibility to include additional autotests.

For plugins that don't live in the main repo.

Change-Id: Iebe4b05bfb60f86531ec82a4ae555fdfaac39ead
Reviewed-by: Joerg Bornemann <joerg.bornemann@theqtcompany.com>
This commit is contained in:
Christian Kandeler
2015-01-23 17:47:29 +01:00
parent 4e05b073eb
commit cdc6d45a8a
2 changed files with 2 additions and 1 deletions

View File

@@ -17,6 +17,7 @@ Project {
property pathList additionalPlugins: []
property pathList additionalLibs: []
property pathList additionalTools: []
property pathList additionalAutotests: []
property string libDirName: "lib"
property string ide_library_path: {
if (qbs.targetOS.contains("osx"))

View File

@@ -22,5 +22,5 @@ Project {
"treeviewfind/treeviewfind.qbs",
"utils/utils.qbs",
"valgrind/valgrind.qbs"
]
].concat(project.additionalAutotests)
}