From cdc6d45a8a32449a907460df469ab7e9efdd2ae0 Mon Sep 17 00:00:00 2001 From: Christian Kandeler Date: Fri, 23 Jan 2015 17:47:29 +0100 Subject: [PATCH] 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 --- qtcreator.qbs | 1 + tests/auto/auto.qbs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/qtcreator.qbs b/qtcreator.qbs index 7b96d735aad..6a9c079324e 100644 --- a/qtcreator.qbs +++ b/qtcreator.qbs @@ -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")) diff --git a/tests/auto/auto.qbs b/tests/auto/auto.qbs index f47fe409591..5bd5acaff49 100644 --- a/tests/auto/auto.qbs +++ b/tests/auto/auto.qbs @@ -22,5 +22,5 @@ Project { "treeviewfind/treeviewfind.qbs", "utils/utils.qbs", "valgrind/valgrind.qbs" - ] + ].concat(project.additionalAutotests) }