aboutsummaryrefslogtreecommitdiffstats
path: root/share/qbs/modules/xcode/xcode.js
diff options
context:
space:
mode:
Diffstat (limited to 'share/qbs/modules/xcode/xcode.js')
-rw-r--r--share/qbs/modules/xcode/xcode.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/share/qbs/modules/xcode/xcode.js b/share/qbs/modules/xcode/xcode.js
index 7c259d3bc..bc0e973a8 100644
--- a/share/qbs/modules/xcode/xcode.js
+++ b/share/qbs/modules/xcode/xcode.js
@@ -42,6 +42,10 @@ function applePlatformDirectoryName(targetOSList, version, throwOnError) {
return "iPhoneOS" + version;
else if (targetOSList.contains("osx"))
return "MacOSX" + version;
+ else if (targetOSList.contains("tvos-simulator"))
+ return "AppleTVSimulator" + version;
+ else if (targetOSList.contains("tvos"))
+ return "AppleTVOS" + version;
else if (targetOSList.contains("watchos-simulator"))
return "WatchSimulator" + version;
else if (targetOSList.contains("watchos"))