aboutsummaryrefslogtreecommitdiffstats
path: root/share
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@digia.com>2013-04-09 17:11:15 +0200
committerChristian Kandeler <christian.kandeler@digia.com>2013-04-10 15:16:17 +0200
commit7efe15d437af30903fa7be256f53c3d2e4675f00 (patch)
treec36f3c6b7704927af031c2bee4d184cded5de1aa /share
parentb407803b34da8b57bbb9a1cf034344e6bee11d45 (diff)
setup-qt: detect static Qt builds
qt.core.staticBuild will be set to true for static builds. Change-Id: I9e316eccacb43982ac616377642ac73d530596c8 Reviewed-by: Christian Kandeler <christian.kandeler@digia.com>
Diffstat (limited to 'share')
-rw-r--r--share/qbs/modules/qt/core/qtcore.qbs1
1 files changed, 1 insertions, 0 deletions
diff --git a/share/qbs/modules/qt/core/qtcore.qbs b/share/qbs/modules/qt/core/qtcore.qbs
index 70bc356a4..09614bb49 100644
--- a/share/qbs/modules/qt/core/qtcore.qbs
+++ b/share/qbs/modules/qt/core/qtcore.qbs
@@ -28,6 +28,7 @@ Module {
property var versionMinor: versionParts[1]
property var versionPatch: versionParts[2]
property bool frameworkBuild
+ property bool staticBuild
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)