aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/3rdparty/syntax-highlighting/syntax-highlighting.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 /src/libs/3rdparty/syntax-highlighting/syntax-highlighting.qbs
parent2007aceab08382c0d6d5747608a1acb5b03b5f30 (diff)
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 'src/libs/3rdparty/syntax-highlighting/syntax-highlighting.qbs')
-rw-r--r--src/libs/3rdparty/syntax-highlighting/syntax-highlighting.qbs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libs/3rdparty/syntax-highlighting/syntax-highlighting.qbs b/src/libs/3rdparty/syntax-highlighting/syntax-highlighting.qbs
index f932c1c4c3..2261d97d69 100644
--- a/src/libs/3rdparty/syntax-highlighting/syntax-highlighting.qbs
+++ b/src/libs/3rdparty/syntax-highlighting/syntax-highlighting.qbs
@@ -55,8 +55,8 @@ Project {
Export {
Depends { name: "cpp" }
cpp.includePaths: [
- product.sourceDirectory + "/src/lib/",
- product.sourceDirectory + "/autogenerated/src/lib/",
+ exportingProduct.sourceDirectory + "/src/lib/",
+ exportingProduct.sourceDirectory + "/autogenerated/src/lib/",
]
}
}