aboutsummaryrefslogtreecommitdiffstats
path: root/qtcreator.qbs
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@digia.com>2013-10-01 10:33:41 +0200
committerJoerg Bornemann <joerg.bornemann@digia.com>2013-10-01 15:06:10 +0200
commit1d11fd734469c745e55409d25e447584e9f6390f (patch)
treef75cf78787bff429d04ba8a04022078e59e1a10b /qtcreator.qbs
parent7b2c26204a58885b33070b2fbbe68891bad475d0 (diff)
qbs project: Add properties for pulling in additional resources.
We need this to build plugins located outside the source tree. Change-Id: Ie587b5e838bf0ce67b19d3222bbc40b53b888e69 Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
Diffstat (limited to 'qtcreator.qbs')
-rw-r--r--qtcreator.qbs3
1 files changed, 3 insertions, 0 deletions
diff --git a/qtcreator.qbs b/qtcreator.qbs
index 3e1d842900..eb204c8f7c 100644
--- a/qtcreator.qbs
+++ b/qtcreator.qbs
@@ -13,6 +13,9 @@ Project {
property path ide_source_tree: path
property string ide_app_path: qbs.targetOS.contains("osx") ? "" : "bin"
property string ide_app_target: qbs.targetOS.contains("osx") ? "Qt Creator" : "qtcreator"
+ property pathList additionalPlugins: []
+ property pathList additionalLibs: []
+ property pathList additionalTools: []
property string ide_library_path: {
if (qbs.targetOS.contains("osx"))
return ide_app_target + ".app/Contents/PlugIns"