summaryrefslogtreecommitdiff
path: root/qbs
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@qt.io>2021-05-11 10:49:31 +0200
committerChristian Kandeler <christian.kandeler@qt.io>2021-05-11 11:40:37 +0000
commitf6eba42522e045fb2a4b0561932c32f431ae7b84 (patch)
treec4717c5fc88eb97a0979dcb78fa4a3f243809d12 /qbs
parent2007aceab08382c0d6d5747608a1acb5b03b5f30 (diff)
downloadqt-creator-f6eba42522e045fb2a4b0561932c32f431ae7b84.tar.gz
qbs build: Use exportingProduct in Export items
The use of product in Export items is deprecated and will be removed in one of the next qbs versions. Change-Id: I2644a69012db4a4b4842066784913f4160d3d80a Reviewed-by: Christian Stenger <christian.stenger@qt.io>
Diffstat (limited to 'qbs')
-rw-r--r--qbs/imports/QtcLibrary.qbs2
-rw-r--r--qbs/imports/QtcPlugin.qbs2
2 files changed, 2 insertions, 2 deletions
diff --git a/qbs/imports/QtcLibrary.qbs b/qbs/imports/QtcLibrary.qbs
index 9a3721b3e0..887a79dbb5 100644
--- a/qbs/imports/QtcLibrary.qbs
+++ b/qbs/imports/QtcLibrary.qbs
@@ -34,6 +34,6 @@ QtcProduct {
Export {
Depends { name: "cpp" }
- cpp.includePaths: [product.libIncludeBase]
+ cpp.includePaths: [exportingProduct.libIncludeBase]
}
}
diff --git a/qbs/imports/QtcPlugin.qbs b/qbs/imports/QtcPlugin.qbs
index dd8e4300fe..9e5a743e12 100644
--- a/qbs/imports/QtcPlugin.qbs
+++ b/qbs/imports/QtcPlugin.qbs
@@ -56,6 +56,6 @@ QtcProduct {
Export {
Depends { name: "ExtensionSystem" }
Depends { name: "cpp" }
- cpp.includePaths: [product.pluginIncludeBase]
+ cpp.includePaths: [exportingProduct.pluginIncludeBase]
}
}