diff options
author | Juan Linietsky <reduzio@gmail.com> | 2015-02-09 21:38:38 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2015-02-09 21:38:38 -0300 |
commit | b1ec72a799af9fc608d84fb1ac7613c8eba7670d (patch) | |
tree | af25171bef707ded05fc64a44005569428f23ddc /platform | |
parent | 3b4fd0f24d8ccec53be59727e6e18f6c9b09ce53 (diff) | |
parent | f7b00960dd89d88c8508c4fa56eb0688122da925 (diff) |
Merge pull request #1299 from umxprime/fix/isim-sdk-path
Fix iOS Simulator SDK path for isim platform.
Diffstat (limited to 'platform')
-rw-r--r-- | platform/isim/detect.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/isim/detect.py b/platform/isim/detect.py index 8d60e30d25..bd0fd2fea3 100644 --- a/platform/isim/detect.py +++ b/platform/isim/detect.py @@ -22,7 +22,7 @@ def get_opts(): return [ ('ISIMPLATFORM', 'name of the iphone platform', 'iPhoneSimulator'), ('ISIMPATH', 'the path to iphone toolchain', '/Applications/Xcode.app/Contents/Developer/Platforms/${ISIMPLATFORM}.platform'), - ('ISIMSDK', 'path to the iphone SDK', '$ISIMPATH/Developer/SDKs/${ISIMPLATFORM}7.1.sdk'), + ('ISIMSDK', 'path to the iphone SDK', '$ISIMPATH/Developer/SDKs/${ISIMPLATFORM}.sdk'), ('game_center', 'Support for game center', 'yes'), ('store_kit', 'Support for in-app store', 'yes'), ('ios_gles22_override', 'Force GLES2.0 on iOS', 'yes'), |