aboutsummaryrefslogtreecommitdiffstats
path: root/qbs-resources
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@qt.io>2018-04-18 12:41:49 +0200
committerJoerg Bornemann <joerg.bornemann@qt.io>2018-04-19 13:15:11 +0000
commitf092eb3d17dc06e9196c95570a52dc5509b55484 (patch)
tree6a5d1fb405caac01e7c51ab609993865135fc157 /qbs-resources
parent92e618c07fb8c425a1da3f2dd807b4da1f6cea9b (diff)
Fix type of visibilityType property in QbsLibrary.qbs
Change-Id: I250d1b6a1c228a02818f509d1f389fb8ccc273c1 Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io> Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'qbs-resources')
-rw-r--r--qbs-resources/imports/QbsLibrary.qbs2
1 files changed, 1 insertions, 1 deletions
diff --git a/qbs-resources/imports/QbsLibrary.qbs b/qbs-resources/imports/QbsLibrary.qbs
index f97b3aee0..12b279468 100644
--- a/qbs-resources/imports/QbsLibrary.qbs
+++ b/qbs-resources/imports/QbsLibrary.qbs
@@ -16,7 +16,7 @@ QbsProduct {
}
cpp.visibility: "minimal"
cpp.cxxLanguageVersion: "c++11"
- property bool visibilityType: Qt.core.staticBuild ? "static" : "dynamic"
+ property string visibilityType: Qt.core.staticBuild ? "static" : "dynamic"
property string headerInstallPrefix: "/include/qbs"
Group {
fileTagsFilter: product.type.concat("dynamiclibrary_symlink")