aboutsummaryrefslogtreecommitdiffstats
path: root/share/qbs/modules/bundle
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@qt.io>2024-03-13 14:58:10 +0100
committerIvan Komissarov <ABBAPOH@gmail.com>2024-03-15 11:35:53 +0000
commit5c88b6b11b762cf5861c9d1570df4f1f050c826e (patch)
treedf0c4475cb64328a26fd667659a50aeecfd1ee59 /share/qbs/modules/bundle
parent4fe028ff8b2632e6d4bda356cc384f60cb319117 (diff)
Adapt to Xcode 15.3v2.3.0
Fixes: QBS-1786 Change-Id: I25cd8c4480179cb5ecb598bbe7dd6573b1fe0832 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'share/qbs/modules/bundle')
-rw-r--r--share/qbs/modules/bundle/bundle.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/share/qbs/modules/bundle/bundle.js b/share/qbs/modules/bundle/bundle.js
index da9e2486a..cf765f7be 100644
--- a/share/qbs/modules/bundle/bundle.js
+++ b/share/qbs/modules/bundle/bundle.js
@@ -152,6 +152,12 @@ function _assign(target, source) {
function macOSSpecsPaths(version, developerPath) {
var result = [];
+ if (Utilities.versionCompare(version, "15.3") >= 0) {
+ result.push(FileInfo.joinPaths(
+ developerPath, "..", "SharedFrameworks", "XCBuild.framework", "PlugIns",
+ "XCBBuildService.bundle", "Contents", "PlugIns", "XCBSpecifications.ideplugin",
+ "Contents", "Resources"));
+ }
if (Utilities.versionCompare(version, "14.3") >= 0) {
result.push(FileInfo.joinPaths(
developerPath, "Library", "Xcode", "Plug-ins", "XCBSpecifications.ideplugin",