Added Xcode native target to build OSX framework

This commit is contained in:
Paolo Bosetti
2012-05-30 12:06:56 -07:00
parent ba3d7c9834
commit 76fd88dfdb
4 changed files with 310 additions and 4 deletions
@@ -0,0 +1,2 @@
/* Localized versions of Info.plist keys */
+30
View File
@@ -0,0 +1,30 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleExecutable</key>
<string>${EXECUTABLE_NAME}</string>
<key>CFBundleIconFile</key>
<string></string>
<key>CFBundleIdentifier</key>
<string>com.github.mruby.${PRODUCT_NAME:rfc1034identifier}</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>${PRODUCT_NAME}</string>
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1</string>
<key>NSHumanReadableCopyright</key>
<string>Copyright © 2012 mruby Authors. All rights reserved.</string>
<key>NSPrincipalClass</key>
<string></string>
</dict>
</plist>
+7
View File
@@ -0,0 +1,7 @@
//
// Prefix header for all source files of the 'mruby_fw' target in the 'mruby_fw' project
//
#ifdef __OBJC__
#import <Cocoa/Cocoa.h>
#endif