diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2012-06-02 10:08:34 -0700 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2012-06-02 10:08:34 -0700 |
| commit | b9923ba12f8aaea2380343b50bd6fcd7c508d29b (patch) | |
| tree | bd395f3fd07c246857922175c1e8662af27f26ea /xcode/mruby_fw | |
| parent | cc86250297c4a8d4a2e3e350fab8cf96929283c3 (diff) | |
| parent | 1bff6a8f62310a750c0943611c70a7247c492bff (diff) | |
| download | mruby-b9923ba12f8aaea2380343b50bd6fcd7c508d29b.tar.gz mruby-b9923ba12f8aaea2380343b50bd6fcd7c508d29b.zip | |
Merge pull request #223 from pbosetti/XCode
X code native target, follow up of #184
Diffstat (limited to 'xcode/mruby_fw')
| -rw-r--r-- | xcode/mruby_fw/en.lproj/InfoPlist.strings | 2 | ||||
| -rw-r--r-- | xcode/mruby_fw/mruby_fw-Info.plist | 30 | ||||
| -rw-r--r-- | xcode/mruby_fw/mruby_fw-Prefix.pch | 7 |
3 files changed, 39 insertions, 0 deletions
diff --git a/xcode/mruby_fw/en.lproj/InfoPlist.strings b/xcode/mruby_fw/en.lproj/InfoPlist.strings new file mode 100644 index 000000000..477b28ff8 --- /dev/null +++ b/xcode/mruby_fw/en.lproj/InfoPlist.strings @@ -0,0 +1,2 @@ +/* Localized versions of Info.plist keys */ + diff --git a/xcode/mruby_fw/mruby_fw-Info.plist b/xcode/mruby_fw/mruby_fw-Info.plist new file mode 100644 index 000000000..6721d7109 --- /dev/null +++ b/xcode/mruby_fw/mruby_fw-Info.plist @@ -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> diff --git a/xcode/mruby_fw/mruby_fw-Prefix.pch b/xcode/mruby_fw/mruby_fw-Prefix.pch new file mode 100644 index 000000000..8be6acecb --- /dev/null +++ b/xcode/mruby_fw/mruby_fw-Prefix.pch @@ -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 |
