aboutsummaryrefslogtreecommitdiffstats
path: root/share
diff options
context:
space:
mode:
authorJake Petroules <jake.petroules@petroules.com>2013-03-15 12:30:03 -0400
committerJoerg Bornemann <joerg.bornemann@digia.com>2013-03-20 12:00:10 +0100
commitf84b4589e5078f3b59c66d174eb84f399aed428a (patch)
tree43683b923dec9de4cf3bb235225e872e2d7f61ee /share
parentef215c58f2393bb43683fd44a5b1613410251714 (diff)
Determine if Qt is a framework build in setup-qt.
Task-number: QBS-184 Change-Id: I0c1f5e31d6b61a64c5592ccaa5e08049ca9f65a2 Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
Diffstat (limited to 'share')
-rw-r--r--share/qbs/modules/qt/core/qtcore.qbs2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/qbs/modules/qt/core/qtcore.qbs b/share/qbs/modules/qt/core/qtcore.qbs
index 4b8627e51..209746b21 100644
--- a/share/qbs/modules/qt/core/qtcore.qbs
+++ b/share/qbs/modules/qt/core/qtcore.qbs
@@ -23,7 +23,7 @@ Module {
property var versionMajor: versionParts[0]
property var versionMinor: versionParts[1]
property var versionPatch: versionParts[2]
- property bool frameworkBuild: qbs.targetOS === 'mac'
+ property bool frameworkBuild
property string generatedFilesDir: 'GeneratedFiles/' + product.name // ### TODO: changing this property does not change the path in the rule ATM.
property string qmFilesDir: {
if (qbs.targetOS === "mac" && product.type.indexOf('applicationbundle') >= 0)