summaryrefslogtreecommitdiff
path: root/qbs
diff options
context:
space:
mode:
authorJake Petroules <jake.petroules@qt.io>2017-07-05 15:46:10 -0700
committerJake Petroules <jake.petroules@qt.io>2017-07-07 17:28:33 +0000
commitb80d5c1c95f44991c12cf997dfe5c09b442a6af2 (patch)
treeaf99c0a7acbd480da8515066036565d151d27768 /qbs
parentf51d7a2314fc7174f02cda2b448931fa5eb6721d (diff)
downloadqt-creator-b80d5c1c95f44991c12cf997dfe5c09b442a6af2.tar.gz
Qbs: fix bundle installation with Qbs 1.8
This patch also sets the minimumQbsVersion to 1.7 because that's the version that is actually documented as being required in the README. Change-Id: I862daaf5fa34ab2cc5db47581689e08aa34f0910 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io> Reviewed-by: Eike Ziller <eike.ziller@qt.io> Reviewed-by: Jake Petroules <jake.petroules@qt.io>
Diffstat (limited to 'qbs')
-rw-r--r--qbs/imports/QtcProduct.qbs2
1 files changed, 2 insertions, 0 deletions
diff --git a/qbs/imports/QtcProduct.qbs b/qbs/imports/QtcProduct.qbs
index 52e63f1f6f..65c792ac5c 100644
--- a/qbs/imports/QtcProduct.qbs
+++ b/qbs/imports/QtcProduct.qbs
@@ -8,6 +8,7 @@ Product {
version: qtc.qtcreator_version
property bool install: true
property string installDir
+ property string installSourceBase
property stringList installTags: type
property string fileName: FileInfo.fileName(sourceDirectory) + ".qbs"
property bool useNonGuiPchFile: false
@@ -37,6 +38,7 @@ Product {
fileTagsFilter: installTags
qbs.install: install
qbs.installDir: installDir
+ qbs.installSourceBase: installSourceBase
}
Group {