[OSX] Add bridgesupport metadata for Carbon frameworks.

http://hipbyte.myjetbrains.com/youtrack/issue/RM-318
This commit is contained in:
Eloy Durán
2013-11-11 14:35:43 +01:00
parent d0f5d6f637
commit 0fd0612744
2 changed files with 3 additions and 1 deletions

1
NEWS
View File

@@ -12,6 +12,7 @@
logs from the device.
* [OSX] Fixed a bug on OSX platform where compiler flags for iOS are passed
when it generates bridgesupport file for vendor library.
* [OSX] Add bridgesupport metadata for Carbon frameworks.
= RubyMotion 2.14 =

View File

@@ -88,7 +88,7 @@ def merge_bridgesupport(base_bridgesupport, merge_brigesupport)
}
end
EXCLUDED_FRAMEWORKS = ['Kernel', 'System', 'IOKit', 'Carbon', 'Ruby', 'RubyCocoa', 'vecLib']
EXCLUDED_FRAMEWORKS = ['Kernel', 'System', 'IOKit', 'Ruby', 'RubyCocoa', 'vecLib']
task :bridgesupport_files do
platform_dev_path = "#{PLATFORMS_DIR}/MacOSX.platform/Developer"
OSX_SDK_VERSIONS.each do |sdk_version|
@@ -110,6 +110,7 @@ task :bridgesupport_files do
linked_framework =
case framework
when 'HIToolbox', 'Ink' then 'Carbon'
when 'CFNetwork', 'LaunchServices', 'Metadata', 'OSServices' then 'CoreServices'
when 'ColorSync', 'HIServices' then 'ApplicationServices'
else framework