diff options
author | Juan Linietsky <reduzio@gmail.com> | 2014-12-08 16:45:02 -0200 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2014-12-08 16:45:02 -0200 |
commit | 811dabb645b1ec2af6c0b22eeba6123e2393c994 (patch) | |
tree | b610050126c56f5c490eab368ef2df2fb9d84e2a | |
parent | ac83dc8f3c74786c272b60036d1cd295eb7a832b (diff) | |
parent | 88f58c5c26b0dfb759400f20e104a86af3187cb1 (diff) |
Merge pull request #940 from marynate/PR-fix-isim-build
Update ios simulator build config file
-rw-r--r-- | platform/isim/detect.py | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/platform/isim/detect.py b/platform/isim/detect.py index f4a17838f9..8d60e30d25 100644 --- a/platform/isim/detect.py +++ b/platform/isim/detect.py @@ -60,14 +60,18 @@ def configure(env): '-Xlinker', '-objc_abi_version', '-Xlinker', '2', + '-framework', 'AudioToolbox', + '-framework', 'AVFoundation', + '-framework', 'CoreAudio', + '-framework', 'CoreGraphics', + '-framework', 'CoreMedia', '-framework', 'Foundation', + '-framework', 'Security', '-framework', 'UIKit', - '-framework', 'IOKit', - '-framework', 'CoreGraphics', + '-framework', 'MediaPlayer', '-framework', 'OpenGLES', '-framework', 'QuartzCore', - '-framework', 'AudioToolbox', - '-framework', 'MediaPlayer', + '-framework', 'SystemConfiguration', '-F$ISIMSDK', ]) |