summaryrefslogtreecommitdiff
path: root/platform/iphone/detect.py
diff options
context:
space:
mode:
authorpunto- <ariel@okamstudio.com>2015-09-28 17:20:16 +0200
committerpunto- <ariel@okamstudio.com>2015-09-28 17:20:16 +0200
commit0840303a9c56f46b55c9f85ff0cc5938f9deb938 (patch)
tree480f320ec0cf567fe5855c82bdabafdf070b340b /platform/iphone/detect.py
parent8154dff3d00634d2dd5f0baced2e8ce3dedc4fef (diff)
parentb4daeda48ba7c180360eb21d08a38d55810722ee (diff)
Merge pull request #2548 from romulox-x/iCloud
Initial iCloud implementation
Diffstat (limited to 'platform/iphone/detect.py')
-rw-r--r--platform/iphone/detect.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/platform/iphone/detect.py b/platform/iphone/detect.py
index 3864968d94..7fd79eaf0d 100644
--- a/platform/iphone/detect.py
+++ b/platform/iphone/detect.py
@@ -26,6 +26,7 @@ def get_opts():
('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'),
+ ('icloud', 'Support for iCloud', 'yes'),
('ios_gles22_override', 'Force GLES2.0 on iOS', 'yes'),
('ios_appirater', 'Enable Appirater', 'no'),
('ios_exceptions', 'Use exceptions when compiling on playbook', 'yes'),
@@ -108,6 +109,9 @@ def configure(env):
if env['store_kit'] == 'yes':
env.Append(CPPFLAGS=['-DSTOREKIT_ENABLED'])
env.Append(LINKFLAGS=['-framework', 'StoreKit'])
+
+ if env['icloud'] == 'yes':
+ env.Append(CPPFLAGS=['-DICLOUD_ENABLED'])
env.Append(CPPPATH = ['$IPHONESDK/usr/include', '$IPHONESDK/System/Library/Frameworks/OpenGLES.framework/Headers', '$IPHONESDK/System/Library/Frameworks/AudioUnit.framework/Headers'])