diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-11-10 15:43:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-10 15:43:50 +0100 |
commit | 1626cfd9372925df9fb2216e6612481eb3a91886 (patch) | |
tree | f13863a32849e737862c97b74d767a2fe24df437 /platform/iphone/detect.py | |
parent | 05fe063ea966406f0ab13393f77f76515491c408 (diff) | |
parent | 1f2f477e1ee28f9fac8b7fc17bbd6d4707c4e5e8 (diff) |
Merge pull request #41230 from naithar/feature/pluggable-ios-modules
[iOS] [4.0] iOS Plugins
Diffstat (limited to 'platform/iphone/detect.py')
-rw-r--r-- | platform/iphone/detect.py | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/platform/iphone/detect.py b/platform/iphone/detect.py index ab453c353f..0456458326 100644 --- a/platform/iphone/detect.py +++ b/platform/iphone/detect.py @@ -35,9 +35,6 @@ def get_opts(): " validation layers)", False, ), - BoolVariable("game_center", "Support for game center", True), - BoolVariable("store_kit", "Support for in-app store", True), - BoolVariable("icloud", "Support for iCloud", True), BoolVariable("ios_exceptions", "Enable exceptions", False), ("ios_triple", "Triple for ios toolchain", ""), ] @@ -222,18 +219,6 @@ def configure(env): ] ) - # Feature options - if env["game_center"]: - env.Append(CPPDEFINES=["GAME_CENTER_ENABLED"]) - env.Append(LINKFLAGS=["-framework", "GameKit"]) - - if env["store_kit"]: - env.Append(CPPDEFINES=["STOREKIT_ENABLED"]) - env.Append(LINKFLAGS=["-framework", "StoreKit"]) - - if env["icloud"]: - env.Append(CPPDEFINES=["ICLOUD_ENABLED"]) - env.Prepend( CPPPATH=[ "$IPHONESDK/usr/include", |