1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

Introduce 'visionos' platform derived from 'apple_embedded'

This commit is contained in:
Ricardo Sanchez-Saez
2025-05-14 12:13:10 +01:00
parent 457299449d
commit 47971c0a27
70 changed files with 2634 additions and 47 deletions

View File

@@ -636,6 +636,14 @@ def detect_darwin_sdk_path(platform, env):
sdk_name = "iphonesimulator"
var_name = "IOS_SDK_PATH"
elif platform == "visionos":
sdk_name = "xros"
var_name = "VISIONOS_SDK_PATH"
elif platform == "visionossimulator":
sdk_name = "xrsimulator"
var_name = "VISIONOS_SDK_PATH"
else:
raise Exception("Invalid platform argument passed to detect_darwin_sdk_path")