aboutsummaryrefslogtreecommitdiff
path: root/platform/iphone/detect.py
diff options
context:
space:
mode:
authorJuan Linietsky2014-11-17 07:46:11 -0300
committerJuan Linietsky2014-11-17 07:46:11 -0300
commitd5cb758d36035fc35e960a466d0b370ff19e4f76 (patch)
treebe190717a7b8cd3924c3d9ff3ba5f5237cd26d41 /platform/iphone/detect.py
parent56b30b31e4df887a5b7b5c70a87597d250482c1f (diff)
downloadgodot-d5cb758d36035fc35e960a466d0b370ff19e4f76.tar.gz
godot-d5cb758d36035fc35e960a466d0b370ff19e4f76.tar.zst
godot-d5cb758d36035fc35e960a466d0b370ff19e4f76.zip
NavMesh
-=-=-=- -Fixed NavMesh API -New NavMesh demo -Support for animated Particles2D -Fixes for native video playback on iOS
Diffstat (limited to 'platform/iphone/detect.py')
-rw-r--r--platform/iphone/detect.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/platform/iphone/detect.py b/platform/iphone/detect.py
index c25742a85..acab6fe54 100644
--- a/platform/iphone/detect.py
+++ b/platform/iphone/detect.py
@@ -21,7 +21,8 @@ def get_opts():
return [
('IPHONEPLATFORM', 'name of the iphone platform', 'iPhoneOS'),
('IPHONEPATH', 'the path to iphone toolchain', '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain'),
- ('IOS_SDK_VERSION', 'The SDK version', 'iPhoneOS7.0'),
+ #('IOS_SDK_VERSION', 'The SDK version', 'iPhoneOS7.0'),
+ ('IOS_SDK_VERSION', 'The SDK version', 'iPhoneOS8.1'),
('IPHONESDK', 'path to the iphone SDK', '/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/${IOS_SDK_VERSION}.sdk/'),
('game_center', 'Support for game center', 'yes'),
('store_kit', 'Support for in-app store', 'yes'),
@@ -79,6 +80,7 @@ def configure(env):
'-framework', 'Security',
#'-framework', 'AdSupport',
'-framework', 'MediaPlayer',
+ '-framework', 'AVFoundation',
])
if env['game_center'] == 'yes':