mirror of
https://github.com/CTCaer/RetroArch.git
synced 2024-12-16 07:16:36 +00:00
(OSX PPC) Add OSX PPC project - still lots of compile errors to
go through
This commit is contained in:
parent
b5a70f520e
commit
1fd7766bc0
BIN
apple/OSXPPC/OSX/RetroArch.icns
Normal file
BIN
apple/OSXPPC/OSX/RetroArch.icns
Normal file
Binary file not shown.
0
apple/OSXPPC/OSX/modules/.empty
Normal file
0
apple/OSXPPC/OSX/modules/.empty
Normal file
47
apple/OSXPPC/RetroArch_OSX.xcodeproj/RetroArch-Info.plist
Normal file
47
apple/OSXPPC/RetroArch_OSX.xcodeproj/RetroArch-Info.plist
Normal file
@ -0,0 +1,47 @@
|
||||
<?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>en</string>
|
||||
<key>CFBundleDocumentTypes</key>
|
||||
<array>
|
||||
<dict>
|
||||
<key>CFBundleTypeExtensions</key>
|
||||
<array>
|
||||
<string>*</string>
|
||||
</array>
|
||||
<key>CFBundleTypeName</key>
|
||||
<string>All Files</string>
|
||||
<key>CFBundleTypeRole</key>
|
||||
<string>Viewer</string>
|
||||
</dict>
|
||||
</array>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>${EXECUTABLE_NAME}</string>
|
||||
<key>CFBundleIconFile</key>
|
||||
<string>RetroArch</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>libretro.${PRODUCT_NAME:rfc1034identifier}</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>${PRODUCT_NAME}</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>APPL</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.0.3</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1.0.3</string>
|
||||
<key>LSMinimumSystemVersion</key>
|
||||
<string>${MACOSX_DEPLOYMENT_TARGET}</string>
|
||||
<key>NSHumanReadableCopyright</key>
|
||||
<string>Copyright © 2013 RetroArch. All rights reserved.</string>
|
||||
<key>NSMainNibFile</key>
|
||||
<string>MainMenu</string>
|
||||
<key>NSPrincipalClass</key>
|
||||
<string>RApplication</string>
|
||||
</dict>
|
||||
</plist>
|
@ -10,7 +10,6 @@
|
||||
7AEFCD7B192128D900FB5B6A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 7AEFCD7A192128D900FB5B6A /* main.m */; };
|
||||
7AEFCD7D192128EA00FB5B6A /* utility.m in Sources */ = {isa = PBXBuildFile; fileRef = 7AEFCD7C192128EA00FB5B6A /* utility.m */; };
|
||||
7AEFCD7F192128FE00FB5B6A /* RAGameView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7AEFCD7E192128FE00FB5B6A /* RAGameView.m */; };
|
||||
7AEFCD811921290D00FB5B6A /* apple_gamecontroller.m in Sources */ = {isa = PBXBuildFile; fileRef = 7AEFCD801921290D00FB5B6A /* apple_gamecontroller.m */; };
|
||||
7AEFCD831921292900FB5B6A /* platform.m in Sources */ = {isa = PBXBuildFile; fileRef = 7AEFCD821921292900FB5B6A /* platform.m */; };
|
||||
7AEFCD851921294100FB5B6A /* settings.m in Sources */ = {isa = PBXBuildFile; fileRef = 7AEFCD841921294100FB5B6A /* settings.m */; };
|
||||
7AEFCD871921295E00FB5B6A /* griffin.c in Sources */ = {isa = PBXBuildFile; fileRef = 7AEFCD861921295E00FB5B6A /* griffin.c */; };
|
||||
@ -31,7 +30,6 @@
|
||||
7AEFCD7A192128D900FB5B6A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = ../common/main.m; sourceTree = SOURCE_ROOT; };
|
||||
7AEFCD7C192128EA00FB5B6A /* utility.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = utility.m; path = ../common/utility.m; sourceTree = SOURCE_ROOT; };
|
||||
7AEFCD7E192128FE00FB5B6A /* RAGameView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RAGameView.m; path = ../common/RAGameView.m; sourceTree = SOURCE_ROOT; };
|
||||
7AEFCD801921290D00FB5B6A /* apple_gamecontroller.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = apple_gamecontroller.m; path = ../common/apple_gamecontroller.m; sourceTree = SOURCE_ROOT; };
|
||||
7AEFCD821921292900FB5B6A /* platform.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = platform.m; path = ../OSX/platform.m; sourceTree = SOURCE_ROOT; };
|
||||
7AEFCD841921294100FB5B6A /* settings.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = settings.m; path = ../OSX/settings.m; sourceTree = SOURCE_ROOT; };
|
||||
7AEFCD861921295E00FB5B6A /* griffin.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = griffin.c; path = ../../griffin/griffin.c; sourceTree = SOURCE_ROOT; };
|
||||
@ -111,7 +109,6 @@
|
||||
7AEFCD861921295E00FB5B6A /* griffin.c */,
|
||||
7AEFCD841921294100FB5B6A /* settings.m */,
|
||||
7AEFCD821921292900FB5B6A /* platform.m */,
|
||||
7AEFCD801921290D00FB5B6A /* apple_gamecontroller.m */,
|
||||
7AEFCD7E192128FE00FB5B6A /* RAGameView.m */,
|
||||
7AEFCD7A192128D900FB5B6A /* main.m */,
|
||||
7AEFCD7C192128EA00FB5B6A /* utility.m */,
|
||||
@ -207,7 +204,6 @@
|
||||
7AEFCD7B192128D900FB5B6A /* main.m in Sources */,
|
||||
7AEFCD7D192128EA00FB5B6A /* utility.m in Sources */,
|
||||
7AEFCD7F192128FE00FB5B6A /* RAGameView.m in Sources */,
|
||||
7AEFCD811921290D00FB5B6A /* apple_gamecontroller.m in Sources */,
|
||||
7AEFCD831921292900FB5B6A /* platform.m in Sources */,
|
||||
7AEFCD851921294100FB5B6A /* settings.m in Sources */,
|
||||
7AEFCD871921295E00FB5B6A /* griffin.c in Sources */,
|
||||
|
Loading…
Reference in New Issue
Block a user