Consolidate the plug-ins in OS X into the main PCSXR project.

Add debugging info for SysLibError on OS X.

git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@85835 e17a0e51-4ae3-4d35-97c3-1a29b211df97
This commit is contained in:
SND\MaddTheSane_cp 2013-07-05 07:11:57 +00:00
parent 5a8a70c2ac
commit 8ce6358f4e
16 changed files with 2542 additions and 4085 deletions

View File

@ -8,3 +8,4 @@ GCC_UNROLL_LOOPS = NO
ONLY_ACTIVE_ARCH = YES
COPY_PHASE_STRIP = NO
STRIP_INSTALLED_PRODUCT = NO
OPTIMIZATION_CFLAGS = -finline-functions -finline-limit=1600 -fno-exceptions -funroll-loops -falign-loops=16 -ffast-math

View File

@ -7,3 +7,5 @@ GCC_INLINES_ARE_PRIVATE_EXTERN = YES
GCC_OPTIMIZATION_LEVEL = s
GCC_UNROLL_LOOPS = YES
COPY_PHASE_STRIP = YES
OPTIMIZATION_CFLAGS = -finline-functions -finline-limit=1600 -fomit-frame-pointer -fno-exceptions -funroll-loops -falign-loops=16 -ffast-math

View File

@ -17,4 +17,5 @@ VALID_ARCHS = i386 x86_64
CLANG_ENABLE_OBJC_ARC[arch=x86_64] = YES
GCC_DYNAMIC_NO_PIC = NO
COMBINE_HIDPI_IMAGES = YES
INFOPLIST_FILE = plugins/$(TARGET_NAME)/Info.plist
PRODUCT_NAME = $(TARGET_NAME)

File diff suppressed because it is too large Load Diff

View File

@ -4,25 +4,4 @@
<FileRef
location = "container:Pcsxr.xcodeproj">
</FileRef>
<FileRef
location = "group:plugins/PeopsXgl/PeopsXGL.xcodeproj">
</FileRef>
<FileRef
location = "group:plugins/DFInput/DFInput.xcodeproj">
</FileRef>
<FileRef
location = "group:plugins/DFCdrom/DFCdrom.xcodeproj">
</FileRef>
<FileRef
location = "group:plugins/DFXVideo/PeopsSoftGPU.xcodeproj">
</FileRef>
<FileRef
location = "group:plugins/DFSound/PeopsSPU.xcodeproj">
</FileRef>
<FileRef
location = "group:plugins/DFNet/DFNet.xcodeproj">
</FileRef>
<FileRef
location = "group:plugins/Bladesio1/Bladesio1.xcodeproj">
</FileRef>
</Workspace>

View File

@ -144,6 +144,8 @@
}
}
SysCloseLibrary(tempHandle);
} else {
SysLibError();
}
}
}

View File

@ -143,7 +143,15 @@ void *SysLoadSym(void *lib, const char *sym) {
}
const char *SysLibError() {
#ifdef DEBUG
const char *theErr = dlerror();
if (theErr) {
NSLog(@"Error loading binary: %s", theErr);
}
return theErr;
#else
return dlerror();
#endif
}
void SysCloseLibrary(void *lib) {

View File

@ -1,407 +0,0 @@
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {
/* Begin PBXBuildFile section */
28586CC614651E870082B8EC /* Bladesio1PluginConfig.xib in Resources */ = {isa = PBXBuildFile; fileRef = 28586CC414651E870082B8EC /* Bladesio1PluginConfig.xib */; };
2BD707180555997500CB5D9B /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2BD707170555997500CB5D9B /* IOKit.framework */; };
552E4CBA1474737A00FB231F /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 552E4CBC1474737A00FB231F /* Localizable.strings */; };
55858D13178609A80068B8FC /* connection.c in Sources */ = {isa = PBXBuildFile; fileRef = 55858D0B178609A80068B8FC /* connection.c */; };
55858D14178609A80068B8FC /* connection.h in Headers */ = {isa = PBXBuildFile; fileRef = 55858D0C178609A80068B8FC /* connection.h */; };
55858D15178609A80068B8FC /* fifo.c in Sources */ = {isa = PBXBuildFile; fileRef = 55858D0D178609A80068B8FC /* fifo.c */; };
55858D16178609A80068B8FC /* fifo.h in Headers */ = {isa = PBXBuildFile; fileRef = 55858D0E178609A80068B8FC /* fifo.h */; };
55858D17178609A80068B8FC /* sio1.c in Sources */ = {isa = PBXBuildFile; fileRef = 55858D0F178609A80068B8FC /* sio1.c */; };
55858D18178609A80068B8FC /* sio1.h in Headers */ = {isa = PBXBuildFile; fileRef = 55858D10178609A80068B8FC /* sio1.h */; };
55858D19178609A80068B8FC /* typedefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 55858D11178609A80068B8FC /* typedefs.h */; };
55858D1A178622CE0068B8FC /* cfg.c in Sources */ = {isa = PBXBuildFile; fileRef = 71F3C32511F3CD0B007B9F12 /* cfg.c */; };
5586006E1785137C00CB3D85 /* ARCBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = 5586006D1785137C00CB3D85 /* ARCBridge.h */; };
71F3C32A11F3CD0B007B9F12 /* PluginConfigController.h in Headers */ = {isa = PBXBuildFile; fileRef = 71F3C32611F3CD0B007B9F12 /* PluginConfigController.h */; };
71F3C32B11F3CD0B007B9F12 /* PluginConfigController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71F3C32711F3CD0B007B9F12 /* PluginConfigController.m */; };
71F3C38611F3CFED007B9F12 /* AppKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 71F3C38511F3CFED007B9F12 /* AppKit.framework */; };
71F3C38811F3CFF7007B9F12 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 71F3C38711F3CFF7007B9F12 /* Carbon.framework */; };
71F3C47A11F3D108007B9F12 /* Credits.rtf in Resources */ = {isa = PBXBuildFile; fileRef = 71F3C47811F3D108007B9F12 /* Credits.rtf */; };
8D576314048677EA00EA77CD /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0AA1909FFE8422F4C02AAC07 /* CoreFoundation.framework */; };
8D5B49A804867FD3000E48DA /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 8D5B49A704867FD3000E48DA /* InfoPlist.strings */; };
/* End PBXBuildFile section */
/* Begin PBXFileReference section */
089C167EFE841241C02AAC07 /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = "<group>"; };
0AA1909FFE8422F4C02AAC07 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreFoundation.framework; path = /System/Library/Frameworks/CoreFoundation.framework; sourceTree = "<absolute>"; };
28586CC514651E870082B8EC /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = English.lproj/Bladesio1PluginConfig.xib; sourceTree = "<group>"; };
2BD707170555997500CB5D9B /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = IOKit.framework; path = /System/Library/Frameworks/IOKit.framework; sourceTree = "<absolute>"; };
552E4CBB1474737A00FB231F /* English */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/Localizable.strings; sourceTree = "<group>"; };
55858D0B178609A80068B8FC /* connection.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = connection.c; sourceTree = "<group>"; };
55858D0C178609A80068B8FC /* connection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = connection.h; sourceTree = "<group>"; };
55858D0D178609A80068B8FC /* fifo.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = fifo.c; sourceTree = "<group>"; };
55858D0E178609A80068B8FC /* fifo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fifo.h; sourceTree = "<group>"; };
55858D0F178609A80068B8FC /* sio1.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = sio1.c; sourceTree = "<group>"; };
55858D10178609A80068B8FC /* sio1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sio1.h; sourceTree = "<group>"; };
55858D11178609A80068B8FC /* typedefs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = typedefs.h; sourceTree = "<group>"; };
55858D301786531D0068B8FC /* Pcsxr-Debug.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Pcsxr-Debug.xcconfig"; sourceTree = "<group>"; };
55858D311786531D0068B8FC /* Pcsxr-Instrument.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Pcsxr-Instrument.xcconfig"; sourceTree = "<group>"; };
55858D321786531D0068B8FC /* Pcsxr-Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Pcsxr-Release.xcconfig"; sourceTree = "<group>"; };
55858D331786531D0068B8FC /* Pcsxr.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Pcsxr.xcconfig; sourceTree = "<group>"; };
5586006D1785137C00CB3D85 /* ARCBridge.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ARCBridge.h; sourceTree = "<group>"; };
71F3C32511F3CD0B007B9F12 /* cfg.c */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.c; path = cfg.c; sourceTree = "<group>"; };
71F3C32611F3CD0B007B9F12 /* PluginConfigController.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; path = PluginConfigController.h; sourceTree = "<group>"; };
71F3C32711F3CD0B007B9F12 /* PluginConfigController.m */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.objc; path = PluginConfigController.m; sourceTree = "<group>"; };
71F3C38511F3CFED007B9F12 /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = /System/Library/Frameworks/AppKit.framework; sourceTree = "<absolute>"; };
71F3C38711F3CFF7007B9F12 /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Carbon.framework; path = /System/Library/Frameworks/Carbon.framework; sourceTree = "<absolute>"; };
71F3C47911F3D108007B9F12 /* English */ = {isa = PBXFileReference; lastKnownFileType = text.rtf; name = English; path = English.lproj/Credits.rtf; sourceTree = "<group>"; };
8D576316048677EA00EA77CD /* Bladesio1.psxplugin */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = Bladesio1.psxplugin; sourceTree = BUILT_PRODUCTS_DIR; };
8D576317048677EA00EA77CD /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist; path = Info.plist; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
8D576313048677EA00EA77CD /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
8D576314048677EA00EA77CD /* CoreFoundation.framework in Frameworks */,
2BD707180555997500CB5D9B /* IOKit.framework in Frameworks */,
71F3C38611F3CFED007B9F12 /* AppKit.framework in Frameworks */,
71F3C38811F3CFF7007B9F12 /* Carbon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
089C166AFE841209C02AAC07 /* CdrDevMac */ = {
isa = PBXGroup;
children = (
08FB77AFFE84173DC02AAC07 /* Source Files */,
089C167CFE841241C02AAC07 /* Resources */,
089C1671FE841209C02AAC07 /* External Frameworks and Libraries */,
19C28FB6FE9D52B211CA2CBB /* Products */,
);
name = CdrDevMac;
sourceTree = "<group>";
};
089C1671FE841209C02AAC07 /* External Frameworks and Libraries */ = {
isa = PBXGroup;
children = (
71F3C38511F3CFED007B9F12 /* AppKit.framework */,
71F3C38711F3CFF7007B9F12 /* Carbon.framework */,
0AA1909FFE8422F4C02AAC07 /* CoreFoundation.framework */,
2BD707170555997500CB5D9B /* IOKit.framework */,
);
name = "External Frameworks and Libraries";
sourceTree = "<group>";
};
089C167CFE841241C02AAC07 /* Resources */ = {
isa = PBXGroup;
children = (
28586CC414651E870082B8EC /* Bladesio1PluginConfig.xib */,
71F3C47811F3D108007B9F12 /* Credits.rtf */,
8D576317048677EA00EA77CD /* Info.plist */,
8D5B49A704867FD3000E48DA /* InfoPlist.strings */,
552E4CBC1474737A00FB231F /* Localizable.strings */,
55858D3D178653A80068B8FC /* Configs */,
);
name = Resources;
sourceTree = "<group>";
};
08FB77AFFE84173DC02AAC07 /* Source Files */ = {
isa = PBXGroup;
children = (
71F3C32111F3CCEF007B9F12 /* macsrc */,
71F3C30911F3CC22007B9F12 /* src */,
);
name = "Source Files";
sourceTree = "<group>";
};
19C28FB6FE9D52B211CA2CBB /* Products */ = {
isa = PBXGroup;
children = (
8D576316048677EA00EA77CD /* Bladesio1.psxplugin */,
);
name = Products;
sourceTree = "<group>";
};
55858D3D178653A80068B8FC /* Configs */ = {
isa = PBXGroup;
children = (
55858D301786531D0068B8FC /* Pcsxr-Debug.xcconfig */,
55858D311786531D0068B8FC /* Pcsxr-Instrument.xcconfig */,
55858D321786531D0068B8FC /* Pcsxr-Release.xcconfig */,
55858D331786531D0068B8FC /* Pcsxr.xcconfig */,
);
name = Configs;
path = ../../Configs;
sourceTree = "<group>";
};
71F3C30911F3CC22007B9F12 /* src */ = {
isa = PBXGroup;
children = (
55858D0B178609A80068B8FC /* connection.c */,
55858D0C178609A80068B8FC /* connection.h */,
55858D0D178609A80068B8FC /* fifo.c */,
55858D0E178609A80068B8FC /* fifo.h */,
55858D0F178609A80068B8FC /* sio1.c */,
55858D10178609A80068B8FC /* sio1.h */,
55858D11178609A80068B8FC /* typedefs.h */,
);
name = src;
path = ../../../plugins/bladesio1;
sourceTree = "<group>";
};
71F3C32111F3CCEF007B9F12 /* macsrc */ = {
isa = PBXGroup;
children = (
5586006D1785137C00CB3D85 /* ARCBridge.h */,
71F3C32511F3CD0B007B9F12 /* cfg.c */,
71F3C32611F3CD0B007B9F12 /* PluginConfigController.h */,
71F3C32711F3CD0B007B9F12 /* PluginConfigController.m */,
);
path = macsrc;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXHeadersBuildPhase section */
8D57630E048677EA00EA77CD /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
71F3C32A11F3CD0B007B9F12 /* PluginConfigController.h in Headers */,
5586006E1785137C00CB3D85 /* ARCBridge.h in Headers */,
55858D14178609A80068B8FC /* connection.h in Headers */,
55858D16178609A80068B8FC /* fifo.h in Headers */,
55858D18178609A80068B8FC /* sio1.h in Headers */,
55858D19178609A80068B8FC /* typedefs.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
8D57630D048677EA00EA77CD /* Bladesio1 */ = {
isa = PBXNativeTarget;
buildConfigurationList = 710735990FDEED75004AD098 /* Build configuration list for PBXNativeTarget "Bladesio1" */;
buildPhases = (
8D57630E048677EA00EA77CD /* Headers */,
8D57630F048677EA00EA77CD /* Resources */,
8D576311048677EA00EA77CD /* Sources */,
8D576313048677EA00EA77CD /* Frameworks */,
8D576315048677EA00EA77CD /* Rez */,
);
buildRules = (
);
dependencies = (
);
name = Bladesio1;
productInstallPath = "$(HOME)/Library/Bundles";
productName = CdrDevMac;
productReference = 8D576316048677EA00EA77CD /* Bladesio1.psxplugin */;
productType = "com.apple.product-type.bundle";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
089C1669FE841209C02AAC07 /* Project object */ = {
isa = PBXProject;
attributes = {
LastUpgradeCheck = 0460;
};
buildConfigurationList = 7107359E0FDEED75004AD098 /* Build configuration list for PBXProject "Bladesio1" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = English;
hasScannedForEncodings = 1;
knownRegions = (
English,
Japanese,
French,
German,
);
mainGroup = 089C166AFE841209C02AAC07 /* CdrDevMac */;
projectDirPath = "";
projectRoot = "";
targets = (
8D57630D048677EA00EA77CD /* Bladesio1 */,
);
};
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
8D57630F048677EA00EA77CD /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
8D5B49A804867FD3000E48DA /* InfoPlist.strings in Resources */,
71F3C47A11F3D108007B9F12 /* Credits.rtf in Resources */,
28586CC614651E870082B8EC /* Bladesio1PluginConfig.xib in Resources */,
552E4CBA1474737A00FB231F /* Localizable.strings in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXRezBuildPhase section */
8D576315048677EA00EA77CD /* Rez */ = {
isa = PBXRezBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXRezBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
8D576311048677EA00EA77CD /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
71F3C32B11F3CD0B007B9F12 /* PluginConfigController.m in Sources */,
55858D13178609A80068B8FC /* connection.c in Sources */,
55858D15178609A80068B8FC /* fifo.c in Sources */,
55858D17178609A80068B8FC /* sio1.c in Sources */,
55858D1A178622CE0068B8FC /* cfg.c in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXVariantGroup section */
28586CC414651E870082B8EC /* Bladesio1PluginConfig.xib */ = {
isa = PBXVariantGroup;
children = (
28586CC514651E870082B8EC /* English */,
);
name = Bladesio1PluginConfig.xib;
sourceTree = "<group>";
};
552E4CBC1474737A00FB231F /* Localizable.strings */ = {
isa = PBXVariantGroup;
children = (
552E4CBB1474737A00FB231F /* English */,
);
name = Localizable.strings;
sourceTree = "<group>";
};
71F3C47811F3D108007B9F12 /* Credits.rtf */ = {
isa = PBXVariantGroup;
children = (
71F3C47911F3D108007B9F12 /* English */,
);
name = Credits.rtf;
sourceTree = "<group>";
};
8D5B49A704867FD3000E48DA /* InfoPlist.strings */ = {
isa = PBXVariantGroup;
children = (
089C167EFE841241C02AAC07 /* English */,
);
name = InfoPlist.strings;
sourceTree = "<group>";
};
/* End PBXVariantGroup section */
/* Begin XCBuildConfiguration section */
7107359A0FDEED75004AD098 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
GCC_DYNAMIC_NO_PIC = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PCSXRPLUG=Bladesio1",
"$(inherited)",
);
GCC_WARN_FOUR_CHARACTER_CONSTANTS = NO;
GCC_WARN_UNKNOWN_PRAGMAS = NO;
INFOPLIST_FILE = Info.plist;
INSTALL_PATH = "$(USER_LIBRARY_DIR)/Playstation Emulator Plugins";
OTHER_LDFLAGS = "";
PRODUCT_NAME = "$(TARGET_NAME)";
SECTORDER_FLAGS = "";
WRAPPER_EXTENSION = psxplugin;
};
name = Debug;
};
7107359B0FDEED75004AD098 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
GCC_DYNAMIC_NO_PIC = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PCSXRPLUG=Bladesio1",
"$(inherited)",
);
GCC_WARN_FOUR_CHARACTER_CONSTANTS = NO;
GCC_WARN_UNKNOWN_PRAGMAS = NO;
INFOPLIST_FILE = Info.plist;
INSTALL_PATH = "$(USER_LIBRARY_DIR)/Playstation Emulator Plugins";
OTHER_LDFLAGS = "";
PRODUCT_NAME = "$(TARGET_NAME)";
SECTORDER_FLAGS = "";
WRAPPER_EXTENSION = psxplugin;
};
name = Release;
};
7107359F0FDEED75004AD098 /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 55858D301786531D0068B8FC /* Pcsxr-Debug.xcconfig */;
buildSettings = {
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
HEADER_SEARCH_PATHS = (
../../../libpcsxcore,
../..,
../../../plugins/dfcdrom,
);
MACOSX_DEPLOYMENT_TARGET = 10.7;
};
name = Debug;
};
710735A00FDEED75004AD098 /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 55858D321786531D0068B8FC /* Pcsxr-Release.xcconfig */;
buildSettings = {
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
HEADER_SEARCH_PATHS = (
../../../libpcsxcore,
../..,
../../../plugins/dfcdrom,
);
MACOSX_DEPLOYMENT_TARGET = 10.7;
};
name = Release;
};
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
710735990FDEED75004AD098 /* Build configuration list for PBXNativeTarget "Bladesio1" */ = {
isa = XCConfigurationList;
buildConfigurations = (
7107359A0FDEED75004AD098 /* Debug */,
7107359B0FDEED75004AD098 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
7107359E0FDEED75004AD098 /* Build configuration list for PBXProject "Bladesio1" */ = {
isa = XCConfigurationList;
buildConfigurations = (
7107359F0FDEED75004AD098 /* Debug */,
710735A00FDEED75004AD098 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
rootObject = 089C1669FE841209C02AAC07 /* Project object */;
}

View File

@ -1,402 +0,0 @@
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {
/* Begin PBXBuildFile section */
28586CC614651E870082B8EC /* DFCdromPluginConfig.xib in Resources */ = {isa = PBXBuildFile; fileRef = 28586CC414651E870082B8EC /* DFCdromPluginConfig.xib */; };
2BD707180555997500CB5D9B /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2BD707170555997500CB5D9B /* IOKit.framework */; };
552E4CBA1474737A00FB231F /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 552E4CBC1474737A00FB231F /* Localizable.strings */; };
5586006E1785137C00CB3D85 /* ARCBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = 5586006D1785137C00CB3D85 /* ARCBridge.h */; };
713DB2E811F113C30001BDD4 /* cdr.c in Sources */ = {isa = PBXBuildFile; fileRef = 713DB2E311F113C30001BDD4 /* cdr.c */; };
713DB2E911F113C30001BDD4 /* cdr.h in Headers */ = {isa = PBXBuildFile; fileRef = 713DB2E411F113C30001BDD4 /* cdr.h */; };
713DB2EB11F113C30001BDD4 /* util.c in Sources */ = {isa = PBXBuildFile; fileRef = 713DB2E611F113C30001BDD4 /* util.c */; };
71F3C32811F3CD0B007B9F12 /* cdr-macosx.c in Sources */ = {isa = PBXBuildFile; fileRef = 71F3C32411F3CD0B007B9F12 /* cdr-macosx.c */; };
71F3C32911F3CD0B007B9F12 /* cfg.c in Sources */ = {isa = PBXBuildFile; fileRef = 71F3C32511F3CD0B007B9F12 /* cfg.c */; };
71F3C32A11F3CD0B007B9F12 /* PluginConfigController.h in Headers */ = {isa = PBXBuildFile; fileRef = 71F3C32611F3CD0B007B9F12 /* PluginConfigController.h */; };
71F3C32B11F3CD0B007B9F12 /* PluginConfigController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71F3C32711F3CD0B007B9F12 /* PluginConfigController.m */; };
71F3C38611F3CFED007B9F12 /* AppKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 71F3C38511F3CFED007B9F12 /* AppKit.framework */; };
71F3C38811F3CFF7007B9F12 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 71F3C38711F3CFF7007B9F12 /* Carbon.framework */; };
71F3C47A11F3D108007B9F12 /* Credits.rtf in Resources */ = {isa = PBXBuildFile; fileRef = 71F3C47811F3D108007B9F12 /* Credits.rtf */; };
8D576314048677EA00EA77CD /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0AA1909FFE8422F4C02AAC07 /* CoreFoundation.framework */; };
8D5B49A804867FD3000E48DA /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 8D5B49A704867FD3000E48DA /* InfoPlist.strings */; };
/* End PBXBuildFile section */
/* Begin PBXFileReference section */
089C167EFE841241C02AAC07 /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = "<group>"; };
0AA1909FFE8422F4C02AAC07 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreFoundation.framework; path = /System/Library/Frameworks/CoreFoundation.framework; sourceTree = "<absolute>"; };
28586CC514651E870082B8EC /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = English.lproj/DFCdromPluginConfig.xib; sourceTree = "<group>"; };
2BD707170555997500CB5D9B /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = IOKit.framework; path = /System/Library/Frameworks/IOKit.framework; sourceTree = "<absolute>"; };
552E4CBB1474737A00FB231F /* English */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/Localizable.strings; sourceTree = "<group>"; };
55858D56178657110068B8FC /* Pcsxr-Debug.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Pcsxr-Debug.xcconfig"; sourceTree = "<group>"; };
55858D57178657110068B8FC /* Pcsxr-Instrument.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Pcsxr-Instrument.xcconfig"; sourceTree = "<group>"; };
55858D58178657110068B8FC /* Pcsxr-Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Pcsxr-Release.xcconfig"; sourceTree = "<group>"; };
55858D59178657110068B8FC /* Pcsxr.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Pcsxr.xcconfig; sourceTree = "<group>"; };
5586006D1785137C00CB3D85 /* ARCBridge.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ARCBridge.h; sourceTree = "<group>"; };
713DB2E311F113C30001BDD4 /* cdr.c */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.c; lineEnding = 2; name = cdr.c; path = ../../../plugins/dfcdrom/cdr.c; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.c; };
713DB2E411F113C30001BDD4 /* cdr.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; name = cdr.h; path = ../../../plugins/dfcdrom/cdr.h; sourceTree = SOURCE_ROOT; };
713DB2E611F113C30001BDD4 /* util.c */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.c; lineEnding = 0; name = util.c; path = ../../../plugins/dfcdrom/util.c; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.c; };
71F3C32411F3CD0B007B9F12 /* cdr-macosx.c */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.c; lineEnding = 0; name = "cdr-macosx.c"; path = "macsrc/cdr-macosx.c"; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.c; };
71F3C32511F3CD0B007B9F12 /* cfg.c */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.c; name = cfg.c; path = macsrc/cfg.c; sourceTree = "<group>"; };
71F3C32611F3CD0B007B9F12 /* PluginConfigController.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; name = PluginConfigController.h; path = macsrc/PluginConfigController.h; sourceTree = "<group>"; };
71F3C32711F3CD0B007B9F12 /* PluginConfigController.m */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.objc; name = PluginConfigController.m; path = macsrc/PluginConfigController.m; sourceTree = "<group>"; };
71F3C38511F3CFED007B9F12 /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = /System/Library/Frameworks/AppKit.framework; sourceTree = "<absolute>"; };
71F3C38711F3CFF7007B9F12 /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Carbon.framework; path = /System/Library/Frameworks/Carbon.framework; sourceTree = "<absolute>"; };
71F3C47911F3D108007B9F12 /* English */ = {isa = PBXFileReference; lastKnownFileType = text.rtf; name = English; path = English.lproj/Credits.rtf; sourceTree = "<group>"; };
8D576316048677EA00EA77CD /* DFCdrom.psxplugin */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = DFCdrom.psxplugin; sourceTree = BUILT_PRODUCTS_DIR; };
8D576317048677EA00EA77CD /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist; path = Info.plist; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
8D576313048677EA00EA77CD /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
8D576314048677EA00EA77CD /* CoreFoundation.framework in Frameworks */,
2BD707180555997500CB5D9B /* IOKit.framework in Frameworks */,
71F3C38611F3CFED007B9F12 /* AppKit.framework in Frameworks */,
71F3C38811F3CFF7007B9F12 /* Carbon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
089C166AFE841209C02AAC07 /* CdrDevMac */ = {
isa = PBXGroup;
children = (
08FB77AFFE84173DC02AAC07 /* Source Files */,
089C167CFE841241C02AAC07 /* Resources */,
089C1671FE841209C02AAC07 /* External Frameworks and Libraries */,
19C28FB6FE9D52B211CA2CBB /* Products */,
);
name = CdrDevMac;
sourceTree = "<group>";
};
089C1671FE841209C02AAC07 /* External Frameworks and Libraries */ = {
isa = PBXGroup;
children = (
71F3C38511F3CFED007B9F12 /* AppKit.framework */,
71F3C38711F3CFF7007B9F12 /* Carbon.framework */,
0AA1909FFE8422F4C02AAC07 /* CoreFoundation.framework */,
2BD707170555997500CB5D9B /* IOKit.framework */,
);
name = "External Frameworks and Libraries";
sourceTree = "<group>";
};
089C167CFE841241C02AAC07 /* Resources */ = {
isa = PBXGroup;
children = (
55858D5A178657110068B8FC /* Configs */,
28586CC414651E870082B8EC /* DFCdromPluginConfig.xib */,
71F3C47811F3D108007B9F12 /* Credits.rtf */,
8D576317048677EA00EA77CD /* Info.plist */,
8D5B49A704867FD3000E48DA /* InfoPlist.strings */,
552E4CBC1474737A00FB231F /* Localizable.strings */,
);
name = Resources;
sourceTree = "<group>";
};
08FB77AFFE84173DC02AAC07 /* Source Files */ = {
isa = PBXGroup;
children = (
71F3C32111F3CCEF007B9F12 /* macsrc */,
71F3C30911F3CC22007B9F12 /* src */,
);
name = "Source Files";
sourceTree = "<group>";
};
19C28FB6FE9D52B211CA2CBB /* Products */ = {
isa = PBXGroup;
children = (
8D576316048677EA00EA77CD /* DFCdrom.psxplugin */,
);
name = Products;
sourceTree = "<group>";
};
55858D5A178657110068B8FC /* Configs */ = {
isa = PBXGroup;
children = (
55858D56178657110068B8FC /* Pcsxr-Debug.xcconfig */,
55858D57178657110068B8FC /* Pcsxr-Instrument.xcconfig */,
55858D58178657110068B8FC /* Pcsxr-Release.xcconfig */,
55858D59178657110068B8FC /* Pcsxr.xcconfig */,
);
name = Configs;
path = "/Users/cwbetts/makestuff/PCSX-R/macosx/Configs";
sourceTree = "<absolute>";
};
71F3C30911F3CC22007B9F12 /* src */ = {
isa = PBXGroup;
children = (
713DB2E311F113C30001BDD4 /* cdr.c */,
713DB2E411F113C30001BDD4 /* cdr.h */,
713DB2E611F113C30001BDD4 /* util.c */,
);
name = src;
sourceTree = "<group>";
};
71F3C32111F3CCEF007B9F12 /* macsrc */ = {
isa = PBXGroup;
children = (
5586006D1785137C00CB3D85 /* ARCBridge.h */,
71F3C32411F3CD0B007B9F12 /* cdr-macosx.c */,
71F3C32511F3CD0B007B9F12 /* cfg.c */,
71F3C32611F3CD0B007B9F12 /* PluginConfigController.h */,
71F3C32711F3CD0B007B9F12 /* PluginConfigController.m */,
);
name = macsrc;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXHeadersBuildPhase section */
8D57630E048677EA00EA77CD /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
713DB2E911F113C30001BDD4 /* cdr.h in Headers */,
71F3C32A11F3CD0B007B9F12 /* PluginConfigController.h in Headers */,
5586006E1785137C00CB3D85 /* ARCBridge.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
8D57630D048677EA00EA77CD /* DFCdrom */ = {
isa = PBXNativeTarget;
buildConfigurationList = 710735990FDEED75004AD098 /* Build configuration list for PBXNativeTarget "DFCdrom" */;
buildPhases = (
8D57630E048677EA00EA77CD /* Headers */,
8D57630F048677EA00EA77CD /* Resources */,
8D576311048677EA00EA77CD /* Sources */,
8D576313048677EA00EA77CD /* Frameworks */,
8D576315048677EA00EA77CD /* Rez */,
);
buildRules = (
);
dependencies = (
);
name = DFCdrom;
productInstallPath = "$(HOME)/Library/Bundles";
productName = CdrDevMac;
productReference = 8D576316048677EA00EA77CD /* DFCdrom.psxplugin */;
productType = "com.apple.product-type.bundle";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
089C1669FE841209C02AAC07 /* Project object */ = {
isa = PBXProject;
attributes = {
LastUpgradeCheck = 0460;
};
buildConfigurationList = 7107359E0FDEED75004AD098 /* Build configuration list for PBXProject "DFCdrom" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = English;
hasScannedForEncodings = 1;
knownRegions = (
English,
Japanese,
French,
German,
);
mainGroup = 089C166AFE841209C02AAC07 /* CdrDevMac */;
projectDirPath = "";
projectRoot = "";
targets = (
8D57630D048677EA00EA77CD /* DFCdrom */,
);
};
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
8D57630F048677EA00EA77CD /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
8D5B49A804867FD3000E48DA /* InfoPlist.strings in Resources */,
71F3C47A11F3D108007B9F12 /* Credits.rtf in Resources */,
28586CC614651E870082B8EC /* DFCdromPluginConfig.xib in Resources */,
552E4CBA1474737A00FB231F /* Localizable.strings in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXRezBuildPhase section */
8D576315048677EA00EA77CD /* Rez */ = {
isa = PBXRezBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXRezBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
8D576311048677EA00EA77CD /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
713DB2E811F113C30001BDD4 /* cdr.c in Sources */,
713DB2EB11F113C30001BDD4 /* util.c in Sources */,
71F3C32811F3CD0B007B9F12 /* cdr-macosx.c in Sources */,
71F3C32911F3CD0B007B9F12 /* cfg.c in Sources */,
71F3C32B11F3CD0B007B9F12 /* PluginConfigController.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXVariantGroup section */
28586CC414651E870082B8EC /* DFCdromPluginConfig.xib */ = {
isa = PBXVariantGroup;
children = (
28586CC514651E870082B8EC /* English */,
);
name = DFCdromPluginConfig.xib;
sourceTree = "<group>";
};
552E4CBC1474737A00FB231F /* Localizable.strings */ = {
isa = PBXVariantGroup;
children = (
552E4CBB1474737A00FB231F /* English */,
);
name = Localizable.strings;
sourceTree = "<group>";
};
71F3C47811F3D108007B9F12 /* Credits.rtf */ = {
isa = PBXVariantGroup;
children = (
71F3C47911F3D108007B9F12 /* English */,
);
name = Credits.rtf;
sourceTree = "<group>";
};
8D5B49A704867FD3000E48DA /* InfoPlist.strings */ = {
isa = PBXVariantGroup;
children = (
089C167EFE841241C02AAC07 /* English */,
);
name = InfoPlist.strings;
sourceTree = "<group>";
};
/* End PBXVariantGroup section */
/* Begin XCBuildConfiguration section */
7107359A0FDEED75004AD098 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
"CLANG_ENABLE_OBJC_ARC[arch=x86_64]" = YES;
COMBINE_HIDPI_IMAGES = YES;
COPY_PHASE_STRIP = NO;
GCC_DYNAMIC_NO_PIC = NO;
GCC_GENERATE_DEBUGGING_SYMBOLS = YES;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_PREPROCESSOR_DEFINITIONS = (
"PCSXRPLUG=DFCdrom",
"$(inherited)",
);
GCC_WARN_FOUR_CHARACTER_CONSTANTS = NO;
GCC_WARN_UNKNOWN_PRAGMAS = NO;
INFOPLIST_FILE = Info.plist;
INSTALL_PATH = "$(USER_LIBRARY_DIR)/Playstation Emulator Plugins";
OTHER_LDFLAGS = "";
PRODUCT_NAME = "$(TARGET_NAME)";
SECTORDER_FLAGS = "";
WRAPPER_EXTENSION = psxplugin;
};
name = Debug;
};
7107359B0FDEED75004AD098 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
"CLANG_ENABLE_OBJC_ARC[arch=x86_64]" = YES;
COMBINE_HIDPI_IMAGES = YES;
COPY_PHASE_STRIP = YES;
GCC_DYNAMIC_NO_PIC = NO;
GCC_GENERATE_DEBUGGING_SYMBOLS = NO;
GCC_OPTIMIZATION_LEVEL = s;
GCC_PREPROCESSOR_DEFINITIONS = (
"PCSXRPLUG=DFCdrom",
"$(inherited)",
);
GCC_WARN_FOUR_CHARACTER_CONSTANTS = NO;
GCC_WARN_UNKNOWN_PRAGMAS = NO;
INFOPLIST_FILE = Info.plist;
INSTALL_PATH = "$(USER_LIBRARY_DIR)/Playstation Emulator Plugins";
OTHER_LDFLAGS = "";
PRODUCT_NAME = "$(TARGET_NAME)";
SECTORDER_FLAGS = "";
WRAPPER_EXTENSION = psxplugin;
};
name = Release;
};
7107359F0FDEED75004AD098 /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 55858D56178657110068B8FC /* Pcsxr-Debug.xcconfig */;
buildSettings = {
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
HEADER_SEARCH_PATHS = (
../../../libpcsxcore,
../..,
../../../plugins/dfcdrom,
);
};
name = Debug;
};
710735A00FDEED75004AD098 /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 55858D58178657110068B8FC /* Pcsxr-Release.xcconfig */;
buildSettings = {
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
HEADER_SEARCH_PATHS = (
../../../libpcsxcore,
../..,
../../../plugins/dfcdrom,
);
};
name = Release;
};
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
710735990FDEED75004AD098 /* Build configuration list for PBXNativeTarget "DFCdrom" */ = {
isa = XCConfigurationList;
buildConfigurations = (
7107359A0FDEED75004AD098 /* Debug */,
7107359B0FDEED75004AD098 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
7107359E0FDEED75004AD098 /* Build configuration list for PBXProject "DFCdrom" */ = {
isa = XCConfigurationList;
buildConfigurations = (
7107359F0FDEED75004AD098 /* Debug */,
710735A00FDEED75004AD098 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
rootObject = 089C1669FE841209C02AAC07 /* Project object */;
}

View File

@ -1,663 +0,0 @@
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {
/* Begin PBXBuildFile section */
28586CC314651E730082B8EC /* NetPcsxrHIDInputPluginMain.xib in Resources */ = {isa = PBXBuildFile; fileRef = 28586CC114651E730082B8EC /* NetPcsxrHIDInputPluginMain.xib */; };
2B679862069193F300E2BD4F /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2B679860069193F300E2BD4F /* Cocoa.framework */; };
2B679863069193F300E2BD4F /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2B679861069193F300E2BD4F /* IOKit.framework */; };
552E4CBF1474739200FB231F /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 552E4CC11474739200FB231F /* Localizable.strings */; };
558600701785138600CB3D85 /* ARCBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = 5586006F1785138600CB3D85 /* ARCBridge.h */; };
71054E211204A49F00AC2CCB /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 71054E201204A49F00AC2CCB /* ForceFeedback.framework */; };
7136F1DA1200E163001973D9 /* ControllerList.h in Headers */ = {isa = PBXBuildFile; fileRef = 71E861A411FF75AC001C1826 /* ControllerList.h */; };
7136F1DB1200E163001973D9 /* ControllerList.m in Sources */ = {isa = PBXBuildFile; fileRef = 71E861A511FF75AC001C1826 /* ControllerList.m */; };
7136F1DC1200E164001973D9 /* MappingCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 71E861A811FF75AC001C1826 /* MappingCell.h */; };
7136F1DD1200E164001973D9 /* MappingCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 71E861A911FF75AC001C1826 /* MappingCell.m */; };
7136F1DE1200E165001973D9 /* PadController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71E861AB11FF75AC001C1826 /* PadController.m */; };
7136F1DF1200E165001973D9 /* PadController.h in Headers */ = {isa = PBXBuildFile; fileRef = 71E861AA11FF75AC001C1826 /* PadController.h */; };
7136F51A12011BB4001973D9 /* Credits.rtf in Resources */ = {isa = PBXBuildFile; fileRef = 7136F51812011BB4001973D9 /* Credits.rtf */; };
714FA82E11FC822A00517F47 /* analog.c in Sources */ = {isa = PBXBuildFile; fileRef = 714FA82A11FC822A00517F47 /* analog.c */; };
714FA82F11FC822A00517F47 /* pad.c in Sources */ = {isa = PBXBuildFile; fileRef = 714FA82B11FC822A00517F47 /* pad.c */; };
714FA83011FC822A00517F47 /* pad.h in Headers */ = {isa = PBXBuildFile; fileRef = 714FA82C11FC822A00517F47 /* pad.h */; };
714FA83111FC822A00517F47 /* sdljoy.c in Sources */ = {isa = PBXBuildFile; fileRef = 714FA82D11FC822A00517F47 /* sdljoy.c */; };
714FA8A011FC846800517F47 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 714FA89F11FC846800517F47 /* Carbon.framework */; };
714FA8FA11FC863500517F47 /* cfg.c in Sources */ = {isa = PBXBuildFile; fileRef = 714FA8F811FC863500517F47 /* cfg.c */; };
714FA8FB11FC863500517F47 /* xkb.c in Sources */ = {isa = PBXBuildFile; fileRef = 714FA8F911FC863500517F47 /* xkb.c */; };
7192EAAE1200D54500038B92 /* cfg.h in Headers */ = {isa = PBXBuildFile; fileRef = 7192EAAB1200D54500038B92 /* cfg.h */; };
71C7B25B130F3904004BF975 /* SDL_syscond.c in Sources */ = {isa = PBXBuildFile; fileRef = 71C7B252130F3904004BF975 /* SDL_syscond.c */; };
71C7B25C130F3904004BF975 /* SDL_sysmutex.c in Sources */ = {isa = PBXBuildFile; fileRef = 71C7B253130F3904004BF975 /* SDL_sysmutex.c */; };
71C7B25D130F3904004BF975 /* SDL_sysmutex_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 71C7B254130F3904004BF975 /* SDL_sysmutex_c.h */; };
71C7B25E130F3904004BF975 /* SDL_syssem.c in Sources */ = {isa = PBXBuildFile; fileRef = 71C7B255130F3904004BF975 /* SDL_syssem.c */; };
71C7B25F130F3904004BF975 /* SDL_systhread.c in Sources */ = {isa = PBXBuildFile; fileRef = 71C7B256130F3904004BF975 /* SDL_systhread.c */; };
71C7B260130F3904004BF975 /* SDL_systhread_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 71C7B257130F3904004BF975 /* SDL_systhread_c.h */; };
71C7B261130F3904004BF975 /* SDL_systhread.h in Headers */ = {isa = PBXBuildFile; fileRef = 71C7B258130F3904004BF975 /* SDL_systhread.h */; };
71C7B262130F3904004BF975 /* SDL_thread.c in Sources */ = {isa = PBXBuildFile; fileRef = 71C7B259130F3904004BF975 /* SDL_thread.c */; };
71C7B263130F3904004BF975 /* SDL_thread_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 71C7B25A130F3904004BF975 /* SDL_thread_c.h */; };
71D88838130F032700F150FF /* begin_code.h in Headers */ = {isa = PBXBuildFile; fileRef = 71D887F9130F032700F150FF /* begin_code.h */; };
71D88839130F032700F150FF /* close_code.h in Headers */ = {isa = PBXBuildFile; fileRef = 71D887FA130F032700F150FF /* close_code.h */; };
71D8883A130F032700F150FF /* SDL.h in Headers */ = {isa = PBXBuildFile; fileRef = 71D887FB130F032700F150FF /* SDL.h */; };
71D8883B130F032700F150FF /* SDL_audio.h in Headers */ = {isa = PBXBuildFile; fileRef = 71D887FC130F032700F150FF /* SDL_audio.h */; };
71D8883C130F032700F150FF /* SDL_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 71D887FD130F032700F150FF /* SDL_config.h */; };
71D8883D130F032700F150FF /* SDL_endian.h in Headers */ = {isa = PBXBuildFile; fileRef = 71D887FE130F032700F150FF /* SDL_endian.h */; };
71D8883E130F032700F150FF /* SDL_error.h in Headers */ = {isa = PBXBuildFile; fileRef = 71D887FF130F032700F150FF /* SDL_error.h */; };
71D8883F130F032700F150FF /* SDL_haptic.h in Headers */ = {isa = PBXBuildFile; fileRef = 71D88800130F032700F150FF /* SDL_haptic.h */; };
71D88840130F032700F150FF /* SDL_joystick.h in Headers */ = {isa = PBXBuildFile; fileRef = 71D88801130F032700F150FF /* SDL_joystick.h */; };
71D88841130F032700F150FF /* SDL_main.h in Headers */ = {isa = PBXBuildFile; fileRef = 71D88802130F032700F150FF /* SDL_main.h */; };
71D88842130F032700F150FF /* SDL_mutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 71D88803130F032700F150FF /* SDL_mutex.h */; };
71D88843130F032700F150FF /* SDL_platform.h in Headers */ = {isa = PBXBuildFile; fileRef = 71D88804130F032700F150FF /* SDL_platform.h */; };
71D88844130F032700F150FF /* SDL_rwops.h in Headers */ = {isa = PBXBuildFile; fileRef = 71D88805130F032700F150FF /* SDL_rwops.h */; };
71D88845130F032700F150FF /* SDL_stdinc.h in Headers */ = {isa = PBXBuildFile; fileRef = 71D88806130F032700F150FF /* SDL_stdinc.h */; };
71D88846130F032700F150FF /* SDL_thread.h in Headers */ = {isa = PBXBuildFile; fileRef = 71D88807130F032700F150FF /* SDL_thread.h */; };
71D88857130F032700F150FF /* SDL_syshaptic.c in Sources */ = {isa = PBXBuildFile; fileRef = 71D8881F130F032700F150FF /* SDL_syshaptic.c */; };
71D88858130F032700F150FF /* SDL_haptic.c in Sources */ = {isa = PBXBuildFile; fileRef = 71D88820130F032700F150FF /* SDL_haptic.c */; };
71D88859130F032700F150FF /* SDL_haptic_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 71D88821130F032700F150FF /* SDL_haptic_c.h */; };
71D8885A130F032700F150FF /* SDL_syshaptic.h in Headers */ = {isa = PBXBuildFile; fileRef = 71D88822130F032700F150FF /* SDL_syshaptic.h */; };
71D8885B130F032700F150FF /* SDL_sysjoystick.c in Sources */ = {isa = PBXBuildFile; fileRef = 71D88825130F032700F150FF /* SDL_sysjoystick.c */; };
71D8885C130F032700F150FF /* SDL_sysjoystick_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 71D88826130F032700F150FF /* SDL_sysjoystick_c.h */; };
71D8885D130F032700F150FF /* SDL_joystick.c in Sources */ = {isa = PBXBuildFile; fileRef = 71D88827130F032700F150FF /* SDL_joystick.c */; };
71D8885E130F032700F150FF /* SDL_joystick_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 71D88828130F032700F150FF /* SDL_joystick_c.h */; };
71D8885F130F032700F150FF /* SDL_sysjoystick.h in Headers */ = {isa = PBXBuildFile; fileRef = 71D88829130F032700F150FF /* SDL_sysjoystick.h */; };
71D88860130F032700F150FF /* SDL.c in Sources */ = {isa = PBXBuildFile; fileRef = 71D8882A130F032700F150FF /* SDL.c */; };
71D88861130F032700F150FF /* SDL_error.c in Sources */ = {isa = PBXBuildFile; fileRef = 71D8882B130F032700F150FF /* SDL_error.c */; };
71D88862130F032700F150FF /* SDL_error_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 71D8882C130F032700F150FF /* SDL_error_c.h */; };
71E861B611FF75AC001C1826 /* PadView.h in Headers */ = {isa = PBXBuildFile; fileRef = 71E861AC11FF75AC001C1826 /* PadView.h */; };
71E861B711FF75AC001C1826 /* PadView.m in Sources */ = {isa = PBXBuildFile; fileRef = 71E861AD11FF75AC001C1826 /* PadView.m */; };
8D576314048677EA00EA77CD /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0AA1909FFE8422F4C02AAC07 /* CoreFoundation.framework */; };
8D5B49A804867FD3000E48DA /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 8D5B49A704867FD3000E48DA /* InfoPlist.strings */; };
/* End PBXBuildFile section */
/* Begin PBXFileReference section */
089C167EFE841241C02AAC07 /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = "<group>"; };
0AA1909FFE8422F4C02AAC07 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreFoundation.framework; path = /System/Library/Frameworks/CoreFoundation.framework; sourceTree = "<absolute>"; };
28586CC214651E730082B8EC /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = English.lproj/NetPcsxrHIDInputPluginMain.xib; sourceTree = "<group>"; };
2B679860069193F300E2BD4F /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = /System/Library/Frameworks/Cocoa.framework; sourceTree = "<absolute>"; };
2B679861069193F300E2BD4F /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = IOKit.framework; path = /System/Library/Frameworks/IOKit.framework; sourceTree = "<absolute>"; };
552E4CC01474739200FB231F /* English */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/Localizable.strings; sourceTree = "<group>"; };
55858D5B1786579E0068B8FC /* Pcsxr-Debug.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Pcsxr-Debug.xcconfig"; sourceTree = "<group>"; };
55858D5C1786579E0068B8FC /* Pcsxr-Instrument.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Pcsxr-Instrument.xcconfig"; sourceTree = "<group>"; };
55858D5D1786579E0068B8FC /* Pcsxr-Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Pcsxr-Release.xcconfig"; sourceTree = "<group>"; };
55858D5E1786579E0068B8FC /* Pcsxr.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Pcsxr.xcconfig; sourceTree = "<group>"; };
5586006F1785138600CB3D85 /* ARCBridge.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ARCBridge.h; sourceTree = "<group>"; };
71054E201204A49F00AC2CCB /* ForceFeedback.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ForceFeedback.framework; path = /System/Library/Frameworks/ForceFeedback.framework; sourceTree = "<absolute>"; };
7136F51912011BB4001973D9 /* English */ = {isa = PBXFileReference; lastKnownFileType = text.rtf; name = English; path = English.lproj/Credits.rtf; sourceTree = "<group>"; };
714FA82A11FC822A00517F47 /* analog.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; lineEnding = 0; name = analog.c; path = ../../../plugins/dfinput/analog.c; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.c; };
714FA82B11FC822A00517F47 /* pad.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pad.c; path = ../../../plugins/dfinput/pad.c; sourceTree = SOURCE_ROOT; };
714FA82C11FC822A00517F47 /* pad.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = pad.h; path = ../../../plugins/dfinput/pad.h; sourceTree = SOURCE_ROOT; };
714FA82D11FC822A00517F47 /* sdljoy.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = sdljoy.c; path = ../../../plugins/dfinput/sdljoy.c; sourceTree = SOURCE_ROOT; };
714FA89F11FC846800517F47 /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Carbon.framework; path = /System/Library/Frameworks/Carbon.framework; sourceTree = "<absolute>"; };
714FA8F811FC863500517F47 /* cfg.c */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.c; lineEnding = 0; name = cfg.c; path = macsrc/cfg.c; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.c; };
714FA8F911FC863500517F47 /* xkb.c */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.c; name = xkb.c; path = macsrc/xkb.c; sourceTree = "<group>"; };
7192EAAB1200D54500038B92 /* cfg.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; name = cfg.h; path = macsrc/cfg.h; sourceTree = "<group>"; };
71C7B252130F3904004BF975 /* SDL_syscond.c */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.c; name = SDL_syscond.c; path = ../Common/SDL/src/thread/pthread/SDL_syscond.c; sourceTree = SOURCE_ROOT; };
71C7B253130F3904004BF975 /* SDL_sysmutex.c */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.c; name = SDL_sysmutex.c; path = ../Common/SDL/src/thread/pthread/SDL_sysmutex.c; sourceTree = SOURCE_ROOT; };
71C7B254130F3904004BF975 /* SDL_sysmutex_c.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; name = SDL_sysmutex_c.h; path = ../Common/SDL/src/thread/pthread/SDL_sysmutex_c.h; sourceTree = SOURCE_ROOT; };
71C7B255130F3904004BF975 /* SDL_syssem.c */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.c; name = SDL_syssem.c; path = ../Common/SDL/src/thread/pthread/SDL_syssem.c; sourceTree = SOURCE_ROOT; };
71C7B256130F3904004BF975 /* SDL_systhread.c */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.c; name = SDL_systhread.c; path = ../Common/SDL/src/thread/pthread/SDL_systhread.c; sourceTree = SOURCE_ROOT; };
71C7B257130F3904004BF975 /* SDL_systhread_c.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; name = SDL_systhread_c.h; path = ../Common/SDL/src/thread/pthread/SDL_systhread_c.h; sourceTree = SOURCE_ROOT; };
71C7B258130F3904004BF975 /* SDL_systhread.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; name = SDL_systhread.h; path = ../Common/SDL/src/thread/SDL_systhread.h; sourceTree = SOURCE_ROOT; };
71C7B259130F3904004BF975 /* SDL_thread.c */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.c; name = SDL_thread.c; path = ../Common/SDL/src/thread/SDL_thread.c; sourceTree = SOURCE_ROOT; };
71C7B25A130F3904004BF975 /* SDL_thread_c.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; name = SDL_thread_c.h; path = ../Common/SDL/src/thread/SDL_thread_c.h; sourceTree = SOURCE_ROOT; };
71D887F9130F032700F150FF /* begin_code.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; name = begin_code.h; path = ../Common/SDL/include/begin_code.h; sourceTree = SOURCE_ROOT; };
71D887FA130F032700F150FF /* close_code.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; name = close_code.h; path = ../Common/SDL/include/close_code.h; sourceTree = SOURCE_ROOT; };
71D887FB130F032700F150FF /* SDL.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; name = SDL.h; path = ../Common/SDL/include/SDL.h; sourceTree = SOURCE_ROOT; };
71D887FC130F032700F150FF /* SDL_audio.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; name = SDL_audio.h; path = ../Common/SDL/include/SDL_audio.h; sourceTree = SOURCE_ROOT; };
71D887FD130F032700F150FF /* SDL_config.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; name = SDL_config.h; path = ../Common/SDL/include/SDL_config.h; sourceTree = SOURCE_ROOT; };
71D887FE130F032700F150FF /* SDL_endian.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; name = SDL_endian.h; path = ../Common/SDL/include/SDL_endian.h; sourceTree = SOURCE_ROOT; };
71D887FF130F032700F150FF /* SDL_error.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; name = SDL_error.h; path = ../Common/SDL/include/SDL_error.h; sourceTree = SOURCE_ROOT; };
71D88800130F032700F150FF /* SDL_haptic.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; name = SDL_haptic.h; path = ../Common/SDL/include/SDL_haptic.h; sourceTree = SOURCE_ROOT; };
71D88801130F032700F150FF /* SDL_joystick.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; name = SDL_joystick.h; path = ../Common/SDL/include/SDL_joystick.h; sourceTree = SOURCE_ROOT; };
71D88802130F032700F150FF /* SDL_main.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; name = SDL_main.h; path = ../Common/SDL/include/SDL_main.h; sourceTree = SOURCE_ROOT; };
71D88803130F032700F150FF /* SDL_mutex.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; name = SDL_mutex.h; path = ../Common/SDL/include/SDL_mutex.h; sourceTree = SOURCE_ROOT; };
71D88804130F032700F150FF /* SDL_platform.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; name = SDL_platform.h; path = ../Common/SDL/include/SDL_platform.h; sourceTree = SOURCE_ROOT; };
71D88805130F032700F150FF /* SDL_rwops.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; name = SDL_rwops.h; path = ../Common/SDL/include/SDL_rwops.h; sourceTree = SOURCE_ROOT; };
71D88806130F032700F150FF /* SDL_stdinc.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; name = SDL_stdinc.h; path = ../Common/SDL/include/SDL_stdinc.h; sourceTree = SOURCE_ROOT; };
71D88807130F032700F150FF /* SDL_thread.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; name = SDL_thread.h; path = ../Common/SDL/include/SDL_thread.h; sourceTree = SOURCE_ROOT; };
71D8881F130F032700F150FF /* SDL_syshaptic.c */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.c; name = SDL_syshaptic.c; path = ../Common/SDL/src/haptic/darwin/SDL_syshaptic.c; sourceTree = SOURCE_ROOT; };
71D88820130F032700F150FF /* SDL_haptic.c */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.c; lineEnding = 0; name = SDL_haptic.c; path = ../Common/SDL/src/haptic/SDL_haptic.c; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.c; };
71D88821130F032700F150FF /* SDL_haptic_c.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; name = SDL_haptic_c.h; path = ../Common/SDL/src/haptic/SDL_haptic_c.h; sourceTree = SOURCE_ROOT; };
71D88822130F032700F150FF /* SDL_syshaptic.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; name = SDL_syshaptic.h; path = ../Common/SDL/src/haptic/SDL_syshaptic.h; sourceTree = SOURCE_ROOT; };
71D88825130F032700F150FF /* SDL_sysjoystick.c */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.c; name = SDL_sysjoystick.c; path = ../Common/SDL/src/joystick/darwin/SDL_sysjoystick.c; sourceTree = SOURCE_ROOT; };
71D88826130F032700F150FF /* SDL_sysjoystick_c.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; name = SDL_sysjoystick_c.h; path = ../Common/SDL/src/joystick/darwin/SDL_sysjoystick_c.h; sourceTree = SOURCE_ROOT; };
71D88827130F032700F150FF /* SDL_joystick.c */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.c; name = SDL_joystick.c; path = ../Common/SDL/src/joystick/SDL_joystick.c; sourceTree = SOURCE_ROOT; };
71D88828130F032700F150FF /* SDL_joystick_c.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; name = SDL_joystick_c.h; path = ../Common/SDL/src/joystick/SDL_joystick_c.h; sourceTree = SOURCE_ROOT; };
71D88829130F032700F150FF /* SDL_sysjoystick.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; name = SDL_sysjoystick.h; path = ../Common/SDL/src/joystick/SDL_sysjoystick.h; sourceTree = SOURCE_ROOT; };
71D8882A130F032700F150FF /* SDL.c */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.c; name = SDL.c; path = ../Common/SDL/src/SDL.c; sourceTree = SOURCE_ROOT; };
71D8882B130F032700F150FF /* SDL_error.c */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.c; name = SDL_error.c; path = ../Common/SDL/src/SDL_error.c; sourceTree = SOURCE_ROOT; };
71D8882C130F032700F150FF /* SDL_error_c.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; name = SDL_error_c.h; path = ../Common/SDL/src/SDL_error_c.h; sourceTree = SOURCE_ROOT; };
71E861A411FF75AC001C1826 /* ControllerList.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; name = ControllerList.h; path = macsrc/ControllerList.h; sourceTree = "<group>"; };
71E861A511FF75AC001C1826 /* ControllerList.m */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.objc; name = ControllerList.m; path = macsrc/ControllerList.m; sourceTree = "<group>"; };
71E861A811FF75AC001C1826 /* MappingCell.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; name = MappingCell.h; path = macsrc/MappingCell.h; sourceTree = "<group>"; };
71E861A911FF75AC001C1826 /* MappingCell.m */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.objc; name = MappingCell.m; path = macsrc/MappingCell.m; sourceTree = "<group>"; };
71E861AA11FF75AC001C1826 /* PadController.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; name = PadController.h; path = macsrc/PadController.h; sourceTree = "<group>"; };
71E861AB11FF75AC001C1826 /* PadController.m */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.objc; name = PadController.m; path = macsrc/PadController.m; sourceTree = "<group>"; };
71E861AC11FF75AC001C1826 /* PadView.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; name = PadView.h; path = macsrc/PadView.h; sourceTree = "<group>"; };
71E861AD11FF75AC001C1826 /* PadView.m */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.objc; name = PadView.m; path = macsrc/PadView.m; sourceTree = "<group>"; };
8D576316048677EA00EA77CD /* DFInput.psxplugin */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = DFInput.psxplugin; sourceTree = BUILT_PRODUCTS_DIR; };
8D576317048677EA00EA77CD /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist; path = Info.plist; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
8D576313048677EA00EA77CD /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
8D576314048677EA00EA77CD /* CoreFoundation.framework in Frameworks */,
2B679862069193F300E2BD4F /* Cocoa.framework in Frameworks */,
2B679863069193F300E2BD4F /* IOKit.framework in Frameworks */,
714FA8A011FC846800517F47 /* Carbon.framework in Frameworks */,
71054E211204A49F00AC2CCB /* ForceFeedback.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
089C166AFE841209C02AAC07 /* DFInput */ = {
isa = PBXGroup;
children = (
714FA82911FC820D00517F47 /* macsrc */,
714FA82811FC820900517F47 /* src */,
71D887F7130F032700F150FF /* SDL */,
089C167CFE841241C02AAC07 /* Resources */,
089C1671FE841209C02AAC07 /* External Frameworks and Libraries */,
19C28FB6FE9D52B211CA2CBB /* Products */,
);
name = DFInput;
sourceTree = "<group>";
};
089C1671FE841209C02AAC07 /* External Frameworks and Libraries */ = {
isa = PBXGroup;
children = (
71054E201204A49F00AC2CCB /* ForceFeedback.framework */,
714FA89F11FC846800517F47 /* Carbon.framework */,
2B679860069193F300E2BD4F /* Cocoa.framework */,
2B679861069193F300E2BD4F /* IOKit.framework */,
0AA1909FFE8422F4C02AAC07 /* CoreFoundation.framework */,
);
name = "External Frameworks and Libraries";
sourceTree = "<group>";
};
089C167CFE841241C02AAC07 /* Resources */ = {
isa = PBXGroup;
children = (
55858D5F1786579E0068B8FC /* Configs */,
7136F51812011BB4001973D9 /* Credits.rtf */,
28586CC114651E730082B8EC /* NetPcsxrHIDInputPluginMain.xib */,
8D576317048677EA00EA77CD /* Info.plist */,
8D5B49A704867FD3000E48DA /* InfoPlist.strings */,
552E4CC11474739200FB231F /* Localizable.strings */,
);
name = Resources;
sourceTree = "<group>";
};
19C28FB6FE9D52B211CA2CBB /* Products */ = {
isa = PBXGroup;
children = (
8D576316048677EA00EA77CD /* DFInput.psxplugin */,
);
name = Products;
sourceTree = "<group>";
};
55858D5F1786579E0068B8FC /* Configs */ = {
isa = PBXGroup;
children = (
55858D5B1786579E0068B8FC /* Pcsxr-Debug.xcconfig */,
55858D5C1786579E0068B8FC /* Pcsxr-Instrument.xcconfig */,
55858D5D1786579E0068B8FC /* Pcsxr-Release.xcconfig */,
55858D5E1786579E0068B8FC /* Pcsxr.xcconfig */,
);
name = Configs;
path = "/Users/cwbetts/makestuff/PCSX-R/macosx/Configs";
sourceTree = "<absolute>";
};
714FA82811FC820900517F47 /* src */ = {
isa = PBXGroup;
children = (
714FA82A11FC822A00517F47 /* analog.c */,
714FA82B11FC822A00517F47 /* pad.c */,
714FA82C11FC822A00517F47 /* pad.h */,
714FA82D11FC822A00517F47 /* sdljoy.c */,
);
name = src;
sourceTree = "<group>";
};
714FA82911FC820D00517F47 /* macsrc */ = {
isa = PBXGroup;
children = (
5586006F1785138600CB3D85 /* ARCBridge.h */,
71E861A411FF75AC001C1826 /* ControllerList.h */,
71E861A511FF75AC001C1826 /* ControllerList.m */,
71E861A811FF75AC001C1826 /* MappingCell.h */,
71E861A911FF75AC001C1826 /* MappingCell.m */,
71E861AA11FF75AC001C1826 /* PadController.h */,
71E861AB11FF75AC001C1826 /* PadController.m */,
71E861AC11FF75AC001C1826 /* PadView.h */,
71E861AD11FF75AC001C1826 /* PadView.m */,
714FA8F811FC863500517F47 /* cfg.c */,
7192EAAB1200D54500038B92 /* cfg.h */,
714FA8F911FC863500517F47 /* xkb.c */,
);
name = macsrc;
sourceTree = "<group>";
};
71C7B250130F3904004BF975 /* thread */ = {
isa = PBXGroup;
children = (
71C7B251130F3904004BF975 /* pthread */,
71C7B258130F3904004BF975 /* SDL_systhread.h */,
71C7B259130F3904004BF975 /* SDL_thread.c */,
71C7B25A130F3904004BF975 /* SDL_thread_c.h */,
);
name = thread;
path = ../Common/SDL/src/thread;
sourceTree = SOURCE_ROOT;
};
71C7B251130F3904004BF975 /* pthread */ = {
isa = PBXGroup;
children = (
71C7B252130F3904004BF975 /* SDL_syscond.c */,
71C7B253130F3904004BF975 /* SDL_sysmutex.c */,
71C7B254130F3904004BF975 /* SDL_sysmutex_c.h */,
71C7B255130F3904004BF975 /* SDL_syssem.c */,
71C7B256130F3904004BF975 /* SDL_systhread.c */,
71C7B257130F3904004BF975 /* SDL_systhread_c.h */,
);
name = pthread;
path = ../Common/SDL/src/thread/pthread;
sourceTree = SOURCE_ROOT;
};
71D887F7130F032700F150FF /* SDL */ = {
isa = PBXGroup;
children = (
71D887F8130F032700F150FF /* include */,
71D88808130F032700F150FF /* src */,
);
name = SDL;
path = ../Common/SDL;
sourceTree = SOURCE_ROOT;
};
71D887F8130F032700F150FF /* include */ = {
isa = PBXGroup;
children = (
71D887F9130F032700F150FF /* begin_code.h */,
71D887FA130F032700F150FF /* close_code.h */,
71D887FB130F032700F150FF /* SDL.h */,
71D887FC130F032700F150FF /* SDL_audio.h */,
71D887FD130F032700F150FF /* SDL_config.h */,
71D887FE130F032700F150FF /* SDL_endian.h */,
71D887FF130F032700F150FF /* SDL_error.h */,
71D88800130F032700F150FF /* SDL_haptic.h */,
71D88801130F032700F150FF /* SDL_joystick.h */,
71D88802130F032700F150FF /* SDL_main.h */,
71D88803130F032700F150FF /* SDL_mutex.h */,
71D88804130F032700F150FF /* SDL_platform.h */,
71D88805130F032700F150FF /* SDL_rwops.h */,
71D88806130F032700F150FF /* SDL_stdinc.h */,
71D88807130F032700F150FF /* SDL_thread.h */,
);
name = include;
path = ../Common/SDL/include;
sourceTree = SOURCE_ROOT;
};
71D88808130F032700F150FF /* src */ = {
isa = PBXGroup;
children = (
71D8881D130F032700F150FF /* haptic */,
71D88823130F032700F150FF /* joystick */,
71C7B250130F3904004BF975 /* thread */,
71D8882A130F032700F150FF /* SDL.c */,
71D8882B130F032700F150FF /* SDL_error.c */,
71D8882C130F032700F150FF /* SDL_error_c.h */,
);
name = src;
path = ../Common/SDL/src;
sourceTree = SOURCE_ROOT;
};
71D8881D130F032700F150FF /* haptic */ = {
isa = PBXGroup;
children = (
71D8881E130F032700F150FF /* darwin */,
71D88820130F032700F150FF /* SDL_haptic.c */,
71D88821130F032700F150FF /* SDL_haptic_c.h */,
71D88822130F032700F150FF /* SDL_syshaptic.h */,
);
name = haptic;
path = ../Common/SDL/src/haptic;
sourceTree = SOURCE_ROOT;
};
71D8881E130F032700F150FF /* darwin */ = {
isa = PBXGroup;
children = (
71D8881F130F032700F150FF /* SDL_syshaptic.c */,
);
name = darwin;
path = ../Common/SDL/src/haptic/darwin;
sourceTree = SOURCE_ROOT;
};
71D88823130F032700F150FF /* joystick */ = {
isa = PBXGroup;
children = (
71D88824130F032700F150FF /* darwin */,
71D88827130F032700F150FF /* SDL_joystick.c */,
71D88828130F032700F150FF /* SDL_joystick_c.h */,
71D88829130F032700F150FF /* SDL_sysjoystick.h */,
);
name = joystick;
path = ../Common/SDL/src/joystick;
sourceTree = SOURCE_ROOT;
};
71D88824130F032700F150FF /* darwin */ = {
isa = PBXGroup;
children = (
71D88825130F032700F150FF /* SDL_sysjoystick.c */,
71D88826130F032700F150FF /* SDL_sysjoystick_c.h */,
);
name = darwin;
path = ../Common/SDL/src/joystick/darwin;
sourceTree = SOURCE_ROOT;
};
/* End PBXGroup section */
/* Begin PBXHeadersBuildPhase section */
8D57630E048677EA00EA77CD /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
714FA83011FC822A00517F47 /* pad.h in Headers */,
71E861B611FF75AC001C1826 /* PadView.h in Headers */,
7192EAAE1200D54500038B92 /* cfg.h in Headers */,
7136F1DA1200E163001973D9 /* ControllerList.h in Headers */,
7136F1DC1200E164001973D9 /* MappingCell.h in Headers */,
7136F1DF1200E165001973D9 /* PadController.h in Headers */,
71D88838130F032700F150FF /* begin_code.h in Headers */,
71D88839130F032700F150FF /* close_code.h in Headers */,
71D8883A130F032700F150FF /* SDL.h in Headers */,
71D8883B130F032700F150FF /* SDL_audio.h in Headers */,
71D8883C130F032700F150FF /* SDL_config.h in Headers */,
71D8883D130F032700F150FF /* SDL_endian.h in Headers */,
71D8883E130F032700F150FF /* SDL_error.h in Headers */,
71D8883F130F032700F150FF /* SDL_haptic.h in Headers */,
71D88840130F032700F150FF /* SDL_joystick.h in Headers */,
71D88841130F032700F150FF /* SDL_main.h in Headers */,
71D88842130F032700F150FF /* SDL_mutex.h in Headers */,
71D88843130F032700F150FF /* SDL_platform.h in Headers */,
71D88844130F032700F150FF /* SDL_rwops.h in Headers */,
71D88845130F032700F150FF /* SDL_stdinc.h in Headers */,
71D88846130F032700F150FF /* SDL_thread.h in Headers */,
71D88859130F032700F150FF /* SDL_haptic_c.h in Headers */,
71D8885A130F032700F150FF /* SDL_syshaptic.h in Headers */,
71D8885C130F032700F150FF /* SDL_sysjoystick_c.h in Headers */,
71D8885E130F032700F150FF /* SDL_joystick_c.h in Headers */,
71D8885F130F032700F150FF /* SDL_sysjoystick.h in Headers */,
71D88862130F032700F150FF /* SDL_error_c.h in Headers */,
71C7B25D130F3904004BF975 /* SDL_sysmutex_c.h in Headers */,
71C7B260130F3904004BF975 /* SDL_systhread_c.h in Headers */,
71C7B261130F3904004BF975 /* SDL_systhread.h in Headers */,
71C7B263130F3904004BF975 /* SDL_thread_c.h in Headers */,
558600701785138600CB3D85 /* ARCBridge.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
8D57630D048677EA00EA77CD /* DFInput */ = {
isa = PBXNativeTarget;
buildConfigurationList = 71155B0C0FDFA2DE00EC0BC5 /* Build configuration list for PBXNativeTarget "DFInput" */;
buildPhases = (
8D57630E048677EA00EA77CD /* Headers */,
8D57630F048677EA00EA77CD /* Resources */,
8D576311048677EA00EA77CD /* Sources */,
8D576313048677EA00EA77CD /* Frameworks */,
8D576315048677EA00EA77CD /* Rez */,
);
buildRules = (
);
dependencies = (
);
name = DFInput;
productInstallPath = "$(HOME)/Library/Bundles";
productName = DFInput;
productReference = 8D576316048677EA00EA77CD /* DFInput.psxplugin */;
productType = "com.apple.product-type.bundle";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
089C1669FE841209C02AAC07 /* Project object */ = {
isa = PBXProject;
attributes = {
LastUpgradeCheck = 0460;
};
buildConfigurationList = 71155B110FDFA2DE00EC0BC5 /* Build configuration list for PBXProject "DFInput" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = English;
hasScannedForEncodings = 1;
knownRegions = (
English,
Japanese,
French,
German,
);
mainGroup = 089C166AFE841209C02AAC07 /* DFInput */;
projectDirPath = "";
projectRoot = "";
targets = (
8D57630D048677EA00EA77CD /* DFInput */,
);
};
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
8D57630F048677EA00EA77CD /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
8D5B49A804867FD3000E48DA /* InfoPlist.strings in Resources */,
7136F51A12011BB4001973D9 /* Credits.rtf in Resources */,
28586CC314651E730082B8EC /* NetPcsxrHIDInputPluginMain.xib in Resources */,
552E4CBF1474739200FB231F /* Localizable.strings in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXRezBuildPhase section */
8D576315048677EA00EA77CD /* Rez */ = {
isa = PBXRezBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXRezBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
8D576311048677EA00EA77CD /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
714FA82E11FC822A00517F47 /* analog.c in Sources */,
714FA82F11FC822A00517F47 /* pad.c in Sources */,
714FA83111FC822A00517F47 /* sdljoy.c in Sources */,
714FA8FA11FC863500517F47 /* cfg.c in Sources */,
714FA8FB11FC863500517F47 /* xkb.c in Sources */,
71E861B711FF75AC001C1826 /* PadView.m in Sources */,
7136F1DB1200E163001973D9 /* ControllerList.m in Sources */,
7136F1DD1200E164001973D9 /* MappingCell.m in Sources */,
7136F1DE1200E165001973D9 /* PadController.m in Sources */,
71D88857130F032700F150FF /* SDL_syshaptic.c in Sources */,
71D88858130F032700F150FF /* SDL_haptic.c in Sources */,
71D8885B130F032700F150FF /* SDL_sysjoystick.c in Sources */,
71D8885D130F032700F150FF /* SDL_joystick.c in Sources */,
71D88860130F032700F150FF /* SDL.c in Sources */,
71D88861130F032700F150FF /* SDL_error.c in Sources */,
71C7B25B130F3904004BF975 /* SDL_syscond.c in Sources */,
71C7B25C130F3904004BF975 /* SDL_sysmutex.c in Sources */,
71C7B25E130F3904004BF975 /* SDL_syssem.c in Sources */,
71C7B25F130F3904004BF975 /* SDL_systhread.c in Sources */,
71C7B262130F3904004BF975 /* SDL_thread.c in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXVariantGroup section */
28586CC114651E730082B8EC /* NetPcsxrHIDInputPluginMain.xib */ = {
isa = PBXVariantGroup;
children = (
28586CC214651E730082B8EC /* English */,
);
name = NetPcsxrHIDInputPluginMain.xib;
sourceTree = "<group>";
};
552E4CC11474739200FB231F /* Localizable.strings */ = {
isa = PBXVariantGroup;
children = (
552E4CC01474739200FB231F /* English */,
);
name = Localizable.strings;
sourceTree = "<group>";
};
7136F51812011BB4001973D9 /* Credits.rtf */ = {
isa = PBXVariantGroup;
children = (
7136F51912011BB4001973D9 /* English */,
);
name = Credits.rtf;
sourceTree = "<group>";
};
8D5B49A704867FD3000E48DA /* InfoPlist.strings */ = {
isa = PBXVariantGroup;
children = (
089C167EFE841241C02AAC07 /* English */,
);
name = InfoPlist.strings;
sourceTree = "<group>";
};
/* End PBXVariantGroup section */
/* Begin XCBuildConfiguration section */
71155B0D0FDFA2DE00EC0BC5 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
COMBINE_HIDPI_IMAGES = YES;
GCC_DYNAMIC_NO_PIC = NO;
GCC_PRECOMPILE_PREFIX_HEADER = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PCSXRPLUG=DFInput",
SDL_AUDIO_DISABLED,
"$(inherited)",
);
GCC_WARN_FOUR_CHARACTER_CONSTANTS = NO;
GCC_WARN_UNKNOWN_PRAGMAS = NO;
HEADER_SEARCH_PATHS = (
../../../libpcsxcore,
../Common/SDL/include,
);
INFOPLIST_FILE = Info.plist;
INSTALL_PATH = "$(USER_LIBRARY_DIR)/Playstation Emulator Plugins";
LIBRARY_SEARCH_PATHS = .;
PRODUCT_NAME = "$(TARGET_NAME)";
WRAPPER_EXTENSION = psxplugin;
};
name = Debug;
};
71155B0E0FDFA2DE00EC0BC5 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
COMBINE_HIDPI_IMAGES = YES;
GCC_DYNAMIC_NO_PIC = NO;
GCC_PRECOMPILE_PREFIX_HEADER = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PCSXRPLUG=DFInput",
SDL_AUDIO_DISABLED,
"$(inherited)",
);
GCC_WARN_FOUR_CHARACTER_CONSTANTS = NO;
GCC_WARN_UNKNOWN_PRAGMAS = NO;
HEADER_SEARCH_PATHS = (
../../../libpcsxcore,
../Common/SDL/include,
);
INFOPLIST_FILE = Info.plist;
INSTALL_PATH = "$(USER_LIBRARY_DIR)/Playstation Emulator Plugins";
LIBRARY_SEARCH_PATHS = .;
PRODUCT_NAME = "$(TARGET_NAME)";
WRAPPER_EXTENSION = psxplugin;
};
name = Release;
};
71155B120FDFA2DE00EC0BC5 /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 55858D5B1786579E0068B8FC /* Pcsxr-Debug.xcconfig */;
buildSettings = {
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
HEADER_SEARCH_PATHS = (
../../../libpcsxcore,
../..,
../../../plugins/dfinput,
../../../plugins/dfinput,
../../../../plugins/dfinput,
../Common/SDL/include,
);
};
name = Debug;
};
71155B130FDFA2DE00EC0BC5 /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 55858D5D1786579E0068B8FC /* Pcsxr-Release.xcconfig */;
buildSettings = {
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
HEADER_SEARCH_PATHS = (
../../../libpcsxcore,
../..,
../../../plugins/dfinput,
../../../plugins/dfinput,
../../../../plugins/dfinput,
../Common/SDL/include,
);
};
name = Release;
};
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
71155B0C0FDFA2DE00EC0BC5 /* Build configuration list for PBXNativeTarget "DFInput" */ = {
isa = XCConfigurationList;
buildConfigurations = (
71155B0D0FDFA2DE00EC0BC5 /* Debug */,
71155B0E0FDFA2DE00EC0BC5 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
71155B110FDFA2DE00EC0BC5 /* Build configuration list for PBXProject "DFInput" */ = {
isa = XCConfigurationList;
buildConfigurations = (
71155B120FDFA2DE00EC0BC5 /* Debug */,
71155B130FDFA2DE00EC0BC5 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
rootObject = 089C1669FE841209C02AAC07 /* Project object */;
}

View File

@ -1,388 +0,0 @@
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {
/* Begin PBXBuildFile section */
551ED70C130F209C00D19D11 /* SockDialog.h in Headers */ = {isa = PBXBuildFile; fileRef = 551ED70A130F209C00D19D11 /* SockDialog.h */; };
551ED70D130F209C00D19D11 /* SockDialog.m in Sources */ = {isa = PBXBuildFile; fileRef = 551ED70B130F209C00D19D11 /* SockDialog.m */; };
55278DBD12C813AC00288CD8 /* dfnet.c in Sources */ = {isa = PBXBuildFile; fileRef = 55278DBA12C813AC00288CD8 /* dfnet.c */; };
55278DBE12C813AC00288CD8 /* dfnet.h in Headers */ = {isa = PBXBuildFile; fileRef = 55278DBB12C813AC00288CD8 /* dfnet.h */; };
55278DC212C8141600288CD8 /* cfg.c in Sources */ = {isa = PBXBuildFile; fileRef = 55278DC112C8141600288CD8 /* cfg.c */; };
55612EC912C965F500BD3D17 /* unix.c in Sources */ = {isa = PBXBuildFile; fileRef = 55278DBC12C813AC00288CD8 /* unix.c */; };
558600731785139C00CB3D85 /* ARCBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = 558600721785139C00CB3D85 /* ARCBridge.h */; };
559DACB3146C64B800C5DF71 /* DFNet.xib in Resources */ = {isa = PBXBuildFile; fileRef = 559DACB1146C64B800C5DF71 /* DFNet.xib */; };
559DACB8146C64D600C5DF71 /* SockDialog.xib in Resources */ = {isa = PBXBuildFile; fileRef = 559DACB6146C64D600C5DF71 /* SockDialog.xib */; };
55F79D6C1475B252007C856E /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 55F79D6E1475B252007C856E /* Localizable.strings */; };
71F3C32A11F3CD0B007B9F12 /* PluginConfigController.h in Headers */ = {isa = PBXBuildFile; fileRef = 71F3C32611F3CD0B007B9F12 /* PluginConfigController.h */; };
71F3C32B11F3CD0B007B9F12 /* PluginConfigController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71F3C32711F3CD0B007B9F12 /* PluginConfigController.m */; };
71F3C38611F3CFED007B9F12 /* AppKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 71F3C38511F3CFED007B9F12 /* AppKit.framework */; };
71F3C47A11F3D108007B9F12 /* Credits.rtf in Resources */ = {isa = PBXBuildFile; fileRef = 71F3C47811F3D108007B9F12 /* Credits.rtf */; };
8D576314048677EA00EA77CD /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0AA1909FFE8422F4C02AAC07 /* CoreFoundation.framework */; };
8D5B49A804867FD3000E48DA /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 8D5B49A704867FD3000E48DA /* InfoPlist.strings */; };
/* End PBXBuildFile section */
/* Begin PBXFileReference section */
089C167EFE841241C02AAC07 /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = "<group>"; };
0AA1909FFE8422F4C02AAC07 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreFoundation.framework; path = /System/Library/Frameworks/CoreFoundation.framework; sourceTree = "<absolute>"; };
551ED70A130F209C00D19D11 /* SockDialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SockDialog.h; sourceTree = "<group>"; };
551ED70B130F209C00D19D11 /* SockDialog.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SockDialog.m; sourceTree = "<group>"; };
55278DBA12C813AC00288CD8 /* dfnet.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = dfnet.c; path = ../../../plugins/dfnet/dfnet.c; sourceTree = SOURCE_ROOT; };
55278DBB12C813AC00288CD8 /* dfnet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = dfnet.h; path = ../../../plugins/dfnet/dfnet.h; sourceTree = SOURCE_ROOT; };
55278DBC12C813AC00288CD8 /* unix.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; lineEnding = 2; name = unix.c; path = ../../../plugins/dfnet/unix.c; sourceTree = SOURCE_ROOT; };
55278DC112C8141600288CD8 /* cfg.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = cfg.c; sourceTree = "<group>"; };
55858D65178658810068B8FC /* Pcsxr-Debug.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Pcsxr-Debug.xcconfig"; sourceTree = "<group>"; };
55858D66178658810068B8FC /* Pcsxr-Instrument.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Pcsxr-Instrument.xcconfig"; sourceTree = "<group>"; };
55858D67178658810068B8FC /* Pcsxr-Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Pcsxr-Release.xcconfig"; sourceTree = "<group>"; };
55858D68178658810068B8FC /* Pcsxr.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Pcsxr.xcconfig; sourceTree = "<group>"; };
558600721785139C00CB3D85 /* ARCBridge.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ARCBridge.h; sourceTree = "<group>"; };
559DACB2146C64B800C5DF71 /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = plugins/DFNet/English.lproj/DFNet.xib; sourceTree = "<group>"; };
559DACB7146C64D600C5DF71 /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = plugins/DFNet/English.lproj/SockDialog.xib; sourceTree = "<group>"; };
55F79D6D1475B252007C856E /* English */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/Localizable.strings; sourceTree = "<group>"; };
71F3C32611F3CD0B007B9F12 /* PluginConfigController.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; path = PluginConfigController.h; sourceTree = "<group>"; };
71F3C32711F3CD0B007B9F12 /* PluginConfigController.m */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.objc; path = PluginConfigController.m; sourceTree = "<group>"; };
71F3C38511F3CFED007B9F12 /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = /System/Library/Frameworks/AppKit.framework; sourceTree = "<absolute>"; };
71F3C38711F3CFF7007B9F12 /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Carbon.framework; path = /System/Library/Frameworks/Carbon.framework; sourceTree = "<absolute>"; };
71F3C47911F3D108007B9F12 /* English */ = {isa = PBXFileReference; lastKnownFileType = text.rtf; name = English; path = English.lproj/Credits.rtf; sourceTree = "<group>"; };
8D576316048677EA00EA77CD /* DFNet.psxplugin */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = DFNet.psxplugin; sourceTree = BUILT_PRODUCTS_DIR; };
8D576317048677EA00EA77CD /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist; path = Info.plist; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
8D576313048677EA00EA77CD /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
8D576314048677EA00EA77CD /* CoreFoundation.framework in Frameworks */,
71F3C38611F3CFED007B9F12 /* AppKit.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
089C166AFE841209C02AAC07 /* CdrDevMac */ = {
isa = PBXGroup;
children = (
08FB77AFFE84173DC02AAC07 /* Source Files */,
089C167CFE841241C02AAC07 /* Resources */,
089C1671FE841209C02AAC07 /* External Frameworks and Libraries */,
19C28FB6FE9D52B211CA2CBB /* Products */,
);
name = CdrDevMac;
sourceTree = "<group>";
};
089C1671FE841209C02AAC07 /* External Frameworks and Libraries */ = {
isa = PBXGroup;
children = (
71F3C38511F3CFED007B9F12 /* AppKit.framework */,
71F3C38711F3CFF7007B9F12 /* Carbon.framework */,
0AA1909FFE8422F4C02AAC07 /* CoreFoundation.framework */,
);
name = "External Frameworks and Libraries";
sourceTree = "<group>";
};
089C167CFE841241C02AAC07 /* Resources */ = {
isa = PBXGroup;
children = (
55858D69178658810068B8FC /* Configs */,
559DACB1146C64B800C5DF71 /* DFNet.xib */,
71F3C47811F3D108007B9F12 /* Credits.rtf */,
8D576317048677EA00EA77CD /* Info.plist */,
8D5B49A704867FD3000E48DA /* InfoPlist.strings */,
55F79D6E1475B252007C856E /* Localizable.strings */,
559DACB6146C64D600C5DF71 /* SockDialog.xib */,
);
name = Resources;
sourceTree = "<group>";
};
08FB77AFFE84173DC02AAC07 /* Source Files */ = {
isa = PBXGroup;
children = (
71F3C32111F3CCEF007B9F12 /* macsrc */,
71F3C30911F3CC22007B9F12 /* src */,
);
name = "Source Files";
sourceTree = "<group>";
};
19C28FB6FE9D52B211CA2CBB /* Products */ = {
isa = PBXGroup;
children = (
8D576316048677EA00EA77CD /* DFNet.psxplugin */,
);
name = Products;
sourceTree = "<group>";
};
55858D69178658810068B8FC /* Configs */ = {
isa = PBXGroup;
children = (
55858D65178658810068B8FC /* Pcsxr-Debug.xcconfig */,
55858D66178658810068B8FC /* Pcsxr-Instrument.xcconfig */,
55858D67178658810068B8FC /* Pcsxr-Release.xcconfig */,
55858D68178658810068B8FC /* Pcsxr.xcconfig */,
);
name = Configs;
path = ../../Configs;
sourceTree = "<group>";
};
71F3C30911F3CC22007B9F12 /* src */ = {
isa = PBXGroup;
children = (
55278DBA12C813AC00288CD8 /* dfnet.c */,
55278DBB12C813AC00288CD8 /* dfnet.h */,
55278DBC12C813AC00288CD8 /* unix.c */,
);
name = src;
sourceTree = "<group>";
};
71F3C32111F3CCEF007B9F12 /* macsrc */ = {
isa = PBXGroup;
children = (
558600721785139C00CB3D85 /* ARCBridge.h */,
55278DC112C8141600288CD8 /* cfg.c */,
71F3C32611F3CD0B007B9F12 /* PluginConfigController.h */,
71F3C32711F3CD0B007B9F12 /* PluginConfigController.m */,
551ED70A130F209C00D19D11 /* SockDialog.h */,
551ED70B130F209C00D19D11 /* SockDialog.m */,
);
path = macsrc;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXHeadersBuildPhase section */
8D57630E048677EA00EA77CD /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
71F3C32A11F3CD0B007B9F12 /* PluginConfigController.h in Headers */,
55278DBE12C813AC00288CD8 /* dfnet.h in Headers */,
551ED70C130F209C00D19D11 /* SockDialog.h in Headers */,
558600731785139C00CB3D85 /* ARCBridge.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
8D57630D048677EA00EA77CD /* DFNet */ = {
isa = PBXNativeTarget;
buildConfigurationList = 710735990FDEED75004AD098 /* Build configuration list for PBXNativeTarget "DFNet" */;
buildPhases = (
8D57630E048677EA00EA77CD /* Headers */,
8D57630F048677EA00EA77CD /* Resources */,
8D576311048677EA00EA77CD /* Sources */,
8D576313048677EA00EA77CD /* Frameworks */,
8D576315048677EA00EA77CD /* Rez */,
);
buildRules = (
);
dependencies = (
);
name = DFNet;
productInstallPath = "$(HOME)/Library/Bundles";
productName = CdrDevMac;
productReference = 8D576316048677EA00EA77CD /* DFNet.psxplugin */;
productType = "com.apple.product-type.bundle";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
089C1669FE841209C02AAC07 /* Project object */ = {
isa = PBXProject;
attributes = {
LastUpgradeCheck = 0440;
};
buildConfigurationList = 7107359E0FDEED75004AD098 /* Build configuration list for PBXProject "DFNet" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = English;
hasScannedForEncodings = 1;
knownRegions = (
English,
Japanese,
French,
German,
);
mainGroup = 089C166AFE841209C02AAC07 /* CdrDevMac */;
projectDirPath = "";
projectRoot = "";
targets = (
8D57630D048677EA00EA77CD /* DFNet */,
);
};
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
8D57630F048677EA00EA77CD /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
8D5B49A804867FD3000E48DA /* InfoPlist.strings in Resources */,
71F3C47A11F3D108007B9F12 /* Credits.rtf in Resources */,
559DACB3146C64B800C5DF71 /* DFNet.xib in Resources */,
559DACB8146C64D600C5DF71 /* SockDialog.xib in Resources */,
55F79D6C1475B252007C856E /* Localizable.strings in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXRezBuildPhase section */
8D576315048677EA00EA77CD /* Rez */ = {
isa = PBXRezBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXRezBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
8D576311048677EA00EA77CD /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
71F3C32B11F3CD0B007B9F12 /* PluginConfigController.m in Sources */,
55278DBD12C813AC00288CD8 /* dfnet.c in Sources */,
55278DC212C8141600288CD8 /* cfg.c in Sources */,
55612EC912C965F500BD3D17 /* unix.c in Sources */,
551ED70D130F209C00D19D11 /* SockDialog.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXVariantGroup section */
559DACB1146C64B800C5DF71 /* DFNet.xib */ = {
isa = PBXVariantGroup;
children = (
559DACB2146C64B800C5DF71 /* English */,
);
name = DFNet.xib;
path = ../..;
sourceTree = "<group>";
};
559DACB6146C64D600C5DF71 /* SockDialog.xib */ = {
isa = PBXVariantGroup;
children = (
559DACB7146C64D600C5DF71 /* English */,
);
name = SockDialog.xib;
path = ../..;
sourceTree = "<group>";
};
55F79D6E1475B252007C856E /* Localizable.strings */ = {
isa = PBXVariantGroup;
children = (
55F79D6D1475B252007C856E /* English */,
);
name = Localizable.strings;
sourceTree = "<group>";
};
71F3C47811F3D108007B9F12 /* Credits.rtf */ = {
isa = PBXVariantGroup;
children = (
71F3C47911F3D108007B9F12 /* English */,
);
name = Credits.rtf;
sourceTree = "<group>";
};
8D5B49A704867FD3000E48DA /* InfoPlist.strings */ = {
isa = PBXVariantGroup;
children = (
089C167EFE841241C02AAC07 /* English */,
);
name = InfoPlist.strings;
sourceTree = "<group>";
};
/* End PBXVariantGroup section */
/* Begin XCBuildConfiguration section */
7107359A0FDEED75004AD098 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
COMBINE_HIDPI_IMAGES = YES;
GCC_PRECOMPILE_PREFIX_HEADER = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PCSXRPLUG=DFNet",
"$(inherited)",
);
GCC_WARN_FOUR_CHARACTER_CONSTANTS = NO;
GCC_WARN_UNKNOWN_PRAGMAS = NO;
INFOPLIST_FILE = Info.plist;
INSTALL_PATH = "$(USER_LIBRARY_DIR)/Playstation Emulator Plugins";
PRODUCT_NAME = "$(TARGET_NAME)";
WRAPPER_EXTENSION = psxplugin;
};
name = Debug;
};
7107359B0FDEED75004AD098 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
COMBINE_HIDPI_IMAGES = YES;
GCC_PRECOMPILE_PREFIX_HEADER = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PCSXRPLUG=DFNet",
"$(inherited)",
);
GCC_WARN_FOUR_CHARACTER_CONSTANTS = NO;
GCC_WARN_UNKNOWN_PRAGMAS = NO;
INFOPLIST_FILE = Info.plist;
INSTALL_PATH = "$(USER_LIBRARY_DIR)/Playstation Emulator Plugins";
PRODUCT_NAME = "$(TARGET_NAME)";
WRAPPER_EXTENSION = psxplugin;
};
name = Release;
};
7107359F0FDEED75004AD098 /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 55858D65178658810068B8FC /* Pcsxr-Debug.xcconfig */;
buildSettings = {
HEADER_SEARCH_PATHS = (
../../../libpcsxcore,
../..,
../../../plugins/dfnet,
);
};
name = Debug;
};
710735A00FDEED75004AD098 /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 55858D67178658810068B8FC /* Pcsxr-Release.xcconfig */;
buildSettings = {
HEADER_SEARCH_PATHS = (
../../../libpcsxcore,
../..,
../../../plugins/dfnet,
);
};
name = Release;
};
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
710735990FDEED75004AD098 /* Build configuration list for PBXNativeTarget "DFNet" */ = {
isa = XCConfigurationList;
buildConfigurations = (
7107359A0FDEED75004AD098 /* Debug */,
7107359B0FDEED75004AD098 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
7107359E0FDEED75004AD098 /* Build configuration list for PBXProject "DFNet" */ = {
isa = XCConfigurationList;
buildConfigurations = (
7107359F0FDEED75004AD098 /* Debug */,
710735A00FDEED75004AD098 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
rootObject = 089C1669FE841209C02AAC07 /* Project object */;
}

View File

@ -2,23 +2,23 @@
<archive type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="8.00">
<data>
<int key="IBDocument.SystemTarget">1060</int>
<string key="IBDocument.SystemVersion">11C74</string>
<string key="IBDocument.InterfaceBuilderVersion">1938</string>
<string key="IBDocument.AppKitVersion">1138.23</string>
<string key="IBDocument.HIToolboxVersion">567.00</string>
<string key="IBDocument.SystemVersion">12E55</string>
<string key="IBDocument.InterfaceBuilderVersion">3084</string>
<string key="IBDocument.AppKitVersion">1187.39</string>
<string key="IBDocument.HIToolboxVersion">626.00</string>
<object class="NSMutableDictionary" key="IBDocument.PluginVersions">
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin</string>
<string key="NS.object.0">1938</string>
<string key="NS.object.0">3084</string>
</object>
<array key="IBDocument.IntegratedClassDependencies">
<string>NSButton</string>
<string>NSButtonCell</string>
<string>NSCustomObject</string>
<string>NSProgressIndicator</string>
<string>NSTextField</string>
<string>NSTextFieldCell</string>
<string>NSView</string>
<string>NSWindowTemplate</string>
<string>NSProgressIndicator</string>
<string>NSCustomObject</string>
<string>NSButtonCell</string>
<string>NSButton</string>
<string>NSTextFieldCell</string>
</array>
<array key="IBDocument.PluginDependencies">
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
@ -58,7 +58,7 @@
<reference key="NSWindow"/>
<bool key="NSEnabled">YES</bool>
<object class="NSTextFieldCell" key="NSCell" id="993388181">
<int key="NSCellFlags">68288064</int>
<int key="NSCellFlags">68157504</int>
<int key="NSCellFlags2">138413056</int>
<string key="NSContents">Waiting for connections...</string>
<object class="NSFont" key="NSSupport" id="596705607">
@ -86,15 +86,15 @@
</object>
</object>
</object>
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
</object>
<object class="NSProgressIndicator" id="308883112">
<reference key="NSNextResponder" ref="1006"/>
<int key="NSvFlags">1292</int>
<object class="NSPSMatrix" key="NSDrawMatrix"/>
<string key="NSFrame">{{104, 61}, {174, 20}}</string>
<reference key="NSSuperview" ref="1006"/>
<reference key="NSWindow"/>
<int key="NSpiFlags">16394</int>
<int key="NSpiFlags">24586</int>
<double key="NSMaxValue">100</double>
</object>
<object class="NSButton" id="105187407">
@ -105,18 +105,19 @@
<reference key="NSWindow"/>
<bool key="NSEnabled">YES</bool>
<object class="NSButtonCell" key="NSCell" id="857910789">
<int key="NSCellFlags">67239424</int>
<int key="NSCellFlags">67108864</int>
<int key="NSCellFlags2">134217728</int>
<string key="NSContents">Cancel</string>
<reference key="NSSupport" ref="596705607"/>
<reference key="NSControlView" ref="105187407"/>
<int key="NSButtonFlags">-2038284033</int>
<int key="NSButtonFlags">-2038284288</int>
<int key="NSButtonFlags2">129</int>
<string key="NSAlternateContents"/>
<string type="base64-UTF8" key="NSKeyEquivalent">Gw</string>
<int key="NSPeriodicDelay">200</int>
<int key="NSPeriodicInterval">25</int>
</object>
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
</object>
</array>
<string key="NSFrameSize">{382, 139}</string>
@ -273,10 +274,6 @@
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.macosx</string>
<real value="1060" key="NS.object.0"/>
</object>
<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencyDefaults">
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.macosx</string>
<real value="1060" key="NS.object.0"/>
</object>
<bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
<int key="IBDocument.defaultPropertyAccessControl">3</int>
</data>

View File

@ -1,952 +0,0 @@
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {
/* Begin PBXBuildFile section */
2B7B2B94072D9BE6007F0C35 /* PluginController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B7B2B92072D9BE6007F0C35 /* PluginController.m */; };
2B7B2BD1072DAE5D007F0C35 /* AppKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2B7B2BD0072DAE5D007F0C35 /* AppKit.framework */; };
2BFF7F3E0715D2E00061278A /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2BFF7F3D0715D2E00061278A /* Carbon.framework */; };
5506636C14AB91C100C7C565 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 5506635A14AB91C100C7C565 /* InfoPlist.strings */; };
5506637314AB91C100C7C565 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 5506636314AB91C100C7C565 /* InfoPlist.strings */; };
554588461783DF39008A7407 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 554588451783DF39008A7407 /* Cocoa.framework */; };
554588541783DF87008A7407 /* NamedSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B7B2BE7072DB1B6007F0C35 /* NamedSlider.m */; };
554588551783DF8B008A7407 /* NamedSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B7B2BE6072DB1B6007F0C35 /* NamedSlider.h */; };
554588581783DFE0008A7407 /* libSPUSharedCode.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 554588431783DF39008A7407 /* libSPUSharedCode.dylib */; };
5545885A1783DFFE008A7407 /* libSPUSharedCode.dylib in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 554588431783DF39008A7407 /* libSPUSharedCode.dylib */; };
5545885D1783E00E008A7407 /* libSPUSharedCode.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 554588431783DF39008A7407 /* libSPUSharedCode.dylib */; };
5545885F1783E020008A7407 /* libSPUSharedCode.dylib in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 554588431783DF39008A7407 /* libSPUSharedCode.dylib */; };
554588701783E5FE008A7407 /* Credits.rtf in Resources */ = {isa = PBXBuildFile; fileRef = 5545886A1783E5FE008A7407 /* Credits.rtf */; };
554588711783E5FE008A7407 /* Credits.rtf in Resources */ = {isa = PBXBuildFile; fileRef = 5545886A1783E5FE008A7407 /* Credits.rtf */; };
554588721783E5FE008A7407 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 5545886C1783E5FE008A7407 /* Localizable.strings */; };
554588731783E5FE008A7407 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 5545886C1783E5FE008A7407 /* Localizable.strings */; };
554588741783E5FE008A7407 /* NetSfPeopsSpuPluginMain.xib in Resources */ = {isa = PBXBuildFile; fileRef = 5545886E1783E5FE008A7407 /* NetSfPeopsSpuPluginMain.xib */; };
554588751783E5FE008A7407 /* NetSfPeopsSpuPluginMain.xib in Resources */ = {isa = PBXBuildFile; fileRef = 5545886E1783E5FE008A7407 /* NetSfPeopsSpuPluginMain.xib */; };
554588781783F2E3008A7407 /* SPUPluginController.h in Headers */ = {isa = PBXBuildFile; fileRef = 554588761783F2E3008A7407 /* SPUPluginController.h */; };
554588791783F2E3008A7407 /* SPUPluginController.m in Sources */ = {isa = PBXBuildFile; fileRef = 554588771783F2E3008A7407 /* SPUPluginController.m */; };
5586006B1785136A00CB3D85 /* ARCBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = 5586006A1785136A00CB3D85 /* ARCBridge.h */; };
5599693C13AFCD2900B0216B /* PluginController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B7B2B92072D9BE6007F0C35 /* PluginController.m */; };
5599693E13AFCD2900B0216B /* dma.c in Sources */ = {isa = PBXBuildFile; fileRef = 71E4E797109DC529003BB7AC /* dma.c */; };
5599693F13AFCD2900B0216B /* freeze.c in Sources */ = {isa = PBXBuildFile; fileRef = 71E4E79B109DC529003BB7AC /* freeze.c */; };
5599694013AFCD2900B0216B /* registers.c in Sources */ = {isa = PBXBuildFile; fileRef = 71E4E79F109DC529003BB7AC /* registers.c */; };
5599694113AFCD2900B0216B /* spu.c in Sources */ = {isa = PBXBuildFile; fileRef = 71E4E7A4109DC529003BB7AC /* spu.c */; };
5599694213AFCD2900B0216B /* xa.c in Sources */ = {isa = PBXBuildFile; fileRef = 71E4E7A7109DC529003BB7AC /* xa.c */; };
5599695313AFCD2900B0216B /* externals.c in Sources */ = {isa = PBXBuildFile; fileRef = A1A2073D13816B1D005EE84C /* externals.c */; };
5599695513AFCD2900B0216B /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0AA1909FFE8422F4C02AAC07 /* CoreFoundation.framework */; };
5599695713AFCD2900B0216B /* AppKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2B7B2BD0072DAE5D007F0C35 /* AppKit.framework */; };
5599696613AFCD7F00B0216B /* SDL_error.c in Sources */ = {isa = PBXBuildFile; fileRef = 71C7B1F4130F340E004BF975 /* SDL_error.c */; };
5599696713AFCD7F00B0216B /* SDL_coreaudio.c in Sources */ = {isa = PBXBuildFile; fileRef = 71C7B1D4130F340E004BF975 /* SDL_coreaudio.c */; };
5599696813AFCD8000B0216B /* SDL_audiotypecvt.c in Sources */ = {isa = PBXBuildFile; fileRef = 71C7B1DC130F340E004BF975 /* SDL_audiotypecvt.c */; };
5599696913AFCD8100B0216B /* SDL_audiocvt.c in Sources */ = {isa = PBXBuildFile; fileRef = 71C7B1D8130F340E004BF975 /* SDL_audiocvt.c */; };
5599696A13AFCD8100B0216B /* SDL_audio.c in Sources */ = {isa = PBXBuildFile; fileRef = 71C7B1D6130F340E004BF975 /* SDL_audio.c */; };
5599696B13AFCD8300B0216B /* SDL.c in Sources */ = {isa = PBXBuildFile; fileRef = 71C7B1F3130F340E004BF975 /* SDL.c */; };
5599696C13AFCD8B00B0216B /* openal.c in Sources */ = {isa = PBXBuildFile; fileRef = 5599692713AFCCC600B0216B /* openal.c */; };
5599696D13AFCD9300B0216B /* sdl.c in Sources */ = {isa = PBXBuildFile; fileRef = 71D88523130EF83900F150FF /* sdl.c */; };
5599696F13AFCE1D00B0216B /* OpenAL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5599696E13AFCE1D00B0216B /* OpenAL.framework */; };
71C7B206130F340E004BF975 /* SDL_mixer.c in Sources */ = {isa = PBXBuildFile; fileRef = 71C7B1DD130F340E004BF975 /* SDL_mixer.c */; };
71C7B207130F340E004BF975 /* SDL_wave.c in Sources */ = {isa = PBXBuildFile; fileRef = 71C7B1DF130F340E004BF975 /* SDL_wave.c */; };
71C7B208130F340E004BF975 /* SDL_rwopsbundlesupport.m in Sources */ = {isa = PBXBuildFile; fileRef = 71C7B1E4130F340E004BF975 /* SDL_rwopsbundlesupport.m */; };
71C7B209130F340E004BF975 /* SDL_rwops.c in Sources */ = {isa = PBXBuildFile; fileRef = 71C7B1E5130F340E004BF975 /* SDL_rwops.c */; };
71C7B210130F340E004BF975 /* SDL_syscond.c in Sources */ = {isa = PBXBuildFile; fileRef = 71C7B1F8130F340E004BF975 /* SDL_syscond.c */; };
71C7B211130F340E004BF975 /* SDL_sysmutex.c in Sources */ = {isa = PBXBuildFile; fileRef = 71C7B1F9130F340E004BF975 /* SDL_sysmutex.c */; };
71C7B212130F340E004BF975 /* SDL_syssem.c in Sources */ = {isa = PBXBuildFile; fileRef = 71C7B1FB130F340E004BF975 /* SDL_syssem.c */; };
71C7B213130F340E004BF975 /* SDL_systhread.c in Sources */ = {isa = PBXBuildFile; fileRef = 71C7B1FC130F340E004BF975 /* SDL_systhread.c */; };
71C7B214130F340E004BF975 /* SDL_thread.c in Sources */ = {isa = PBXBuildFile; fileRef = 71C7B1FF130F340E004BF975 /* SDL_thread.c */; };
71D88636130EFFB500F150FF /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 71D88634130EFFB500F150FF /* CoreAudio.framework */; };
71D8864F130F009E00F150FF /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 71D8864E130F009D00F150FF /* IOKit.framework */; };
71D88654130F00B400F150FF /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 71D88653130F00B400F150FF /* AudioUnit.framework */; };
71E4E7AB109DC529003BB7AC /* dma.c in Sources */ = {isa = PBXBuildFile; fileRef = 71E4E797109DC529003BB7AC /* dma.c */; };
71E4E7AC109DC529003BB7AC /* freeze.c in Sources */ = {isa = PBXBuildFile; fileRef = 71E4E79B109DC529003BB7AC /* freeze.c */; };
71E4E7AE109DC529003BB7AC /* registers.c in Sources */ = {isa = PBXBuildFile; fileRef = 71E4E79F109DC529003BB7AC /* registers.c */; };
71E4E7B0109DC529003BB7AC /* spu.c in Sources */ = {isa = PBXBuildFile; fileRef = 71E4E7A4109DC529003BB7AC /* spu.c */; };
71E4E7B1109DC529003BB7AC /* xa.c in Sources */ = {isa = PBXBuildFile; fileRef = 71E4E7A7109DC529003BB7AC /* xa.c */; };
8D576314048677EA00EA77CD /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0AA1909FFE8422F4C02AAC07 /* CoreFoundation.framework */; };
A1A2073E13816B1D005EE84C /* externals.c in Sources */ = {isa = PBXBuildFile; fileRef = A1A2073D13816B1D005EE84C /* externals.c */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
554588561783DFD9008A7407 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 089C1669FE841209C02AAC07 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 554588421783DF39008A7407;
remoteInfo = PCSXRNamedSliders;
};
5545885B1783E00A008A7407 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 089C1669FE841209C02AAC07 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 554588421783DF39008A7407;
remoteInfo = PCSXRNamedSliders;
};
/* End PBXContainerItemProxy section */
/* Begin PBXCopyFilesBuildPhase section */
554588591783DFE6008A7407 /* Copy Frameworks */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = "";
dstSubfolderSpec = 10;
files = (
5545885A1783DFFE008A7407 /* libSPUSharedCode.dylib in Copy Frameworks */,
);
name = "Copy Frameworks";
runOnlyForDeploymentPostprocessing = 0;
};
5545885E1783E015008A7407 /* Copy Frameworks */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = "";
dstSubfolderSpec = 10;
files = (
5545885F1783E020008A7407 /* libSPUSharedCode.dylib in Copy Frameworks */,
);
name = "Copy Frameworks";
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXCopyFilesBuildPhase section */
/* Begin PBXFileReference section */
0AA1909FFE8422F4C02AAC07 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreFoundation.framework; path = /System/Library/Frameworks/CoreFoundation.framework; sourceTree = "<absolute>"; };
2B7B2B91072D9BE6007F0C35 /* PluginController.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = PluginController.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
2B7B2B92072D9BE6007F0C35 /* PluginController.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = PluginController.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
2B7B2BD0072DAE5D007F0C35 /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = /System/Library/Frameworks/AppKit.framework; sourceTree = "<absolute>"; };
2B7B2BE6072DB1B6007F0C35 /* NamedSlider.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = NamedSlider.h; sourceTree = "<group>"; };
2B7B2BE7072DB1B6007F0C35 /* NamedSlider.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; path = NamedSlider.m; sourceTree = "<group>"; };
2BFF7F3D0715D2E00061278A /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Carbon.framework; path = /System/Library/Frameworks/Carbon.framework; sourceTree = "<absolute>"; };
5506635B14AB91C100C7C565 /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = "<group>"; };
5506636414AB91C100C7C565 /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = "<group>"; };
5517C065136217DE00706CCF /* externals.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = externals.c; sourceTree = "<group>"; };
554588431783DF39008A7407 /* libSPUSharedCode.dylib */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = libSPUSharedCode.dylib; sourceTree = BUILT_PRODUCTS_DIR; };
554588451783DF39008A7407 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = System/Library/Frameworks/Cocoa.framework; sourceTree = SDKROOT; };
554588481783DF39008A7407 /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = System/Library/Frameworks/AppKit.framework; sourceTree = SDKROOT; };
554588491783DF39008A7407 /* CoreData.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreData.framework; path = System/Library/Frameworks/CoreData.framework; sourceTree = SDKROOT; };
5545884A1783DF39008A7407 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
5545886B1783E5FE008A7407 /* English */ = {isa = PBXFileReference; lastKnownFileType = text.rtf; name = English; path = English.lproj/Credits.rtf; sourceTree = "<group>"; };
5545886D1783E5FE008A7407 /* English */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/Localizable.strings; sourceTree = "<group>"; };
5545886F1783E5FE008A7407 /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = English.lproj/NetSfPeopsSpuPluginMain.xib; sourceTree = "<group>"; };
554588761783F2E3008A7407 /* SPUPluginController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SPUPluginController.h; sourceTree = "<group>"; };
554588771783F2E3008A7407 /* SPUPluginController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SPUPluginController.m; sourceTree = "<group>"; };
55858D3E178654D90068B8FC /* Pcsxr-Debug.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Pcsxr-Debug.xcconfig"; sourceTree = "<group>"; };
55858D3F178654D90068B8FC /* Pcsxr-Instrument.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Pcsxr-Instrument.xcconfig"; sourceTree = "<group>"; };
55858D40178654D90068B8FC /* Pcsxr-Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Pcsxr-Release.xcconfig"; sourceTree = "<group>"; };
55858D41178654D90068B8FC /* Pcsxr.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Pcsxr.xcconfig; sourceTree = "<group>"; };
5586006A1785136A00CB3D85 /* ARCBridge.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ARCBridge.h; sourceTree = "<group>"; };
5599692713AFCCC600B0216B /* openal.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = openal.c; sourceTree = "<group>"; };
5599695E13AFCD2900B0216B /* PeopsSpuAL.psxplugin */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = PeopsSpuAL.psxplugin; sourceTree = BUILT_PRODUCTS_DIR; };
5599696E13AFCE1D00B0216B /* OpenAL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenAL.framework; path = System/Library/Frameworks/OpenAL.framework; sourceTree = SDKROOT; };
55C8AB0C146DCD0E005ACCCB /* Info-AL.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "Info-AL.plist"; sourceTree = "<group>"; };
55F36E4B146CA0A900718DE6 /* maccfg.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = maccfg.h; sourceTree = "<group>"; };
71C7B1C2130F340E004BF975 /* begin_code.h */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.h; path = begin_code.h; sourceTree = "<group>"; };
71C7B1C3130F340E004BF975 /* close_code.h */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.h; path = close_code.h; sourceTree = "<group>"; };
71C7B1C4130F340E004BF975 /* SDL.h */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.h; path = SDL.h; sourceTree = "<group>"; };
71C7B1C5130F340E004BF975 /* SDL_audio.h */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.h; path = SDL_audio.h; sourceTree = "<group>"; };
71C7B1C6130F340E004BF975 /* SDL_config.h */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.h; path = SDL_config.h; sourceTree = "<group>"; };
71C7B1C7130F340E004BF975 /* SDL_endian.h */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.h; path = SDL_endian.h; sourceTree = "<group>"; };
71C7B1C8130F340E004BF975 /* SDL_error.h */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.h; path = SDL_error.h; sourceTree = "<group>"; };
71C7B1C9130F340E004BF975 /* SDL_haptic.h */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.h; path = SDL_haptic.h; sourceTree = "<group>"; };
71C7B1CA130F340E004BF975 /* SDL_joystick.h */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.h; path = SDL_joystick.h; sourceTree = "<group>"; };
71C7B1CB130F340E004BF975 /* SDL_main.h */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.h; path = SDL_main.h; sourceTree = "<group>"; };
71C7B1CC130F340E004BF975 /* SDL_mutex.h */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.h; path = SDL_mutex.h; sourceTree = "<group>"; };
71C7B1CD130F340E004BF975 /* SDL_platform.h */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.h; path = SDL_platform.h; sourceTree = "<group>"; };
71C7B1CE130F340E004BF975 /* SDL_rwops.h */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.h; path = SDL_rwops.h; sourceTree = "<group>"; };
71C7B1CF130F340E004BF975 /* SDL_stdinc.h */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.h; path = SDL_stdinc.h; sourceTree = "<group>"; };
71C7B1D0130F340E004BF975 /* SDL_thread.h */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.h; path = SDL_thread.h; sourceTree = "<group>"; };
71C7B1D4130F340E004BF975 /* SDL_coreaudio.c */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.c; path = SDL_coreaudio.c; sourceTree = "<group>"; };
71C7B1D5130F340E004BF975 /* SDL_coreaudio.h */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.h; path = SDL_coreaudio.h; sourceTree = "<group>"; };
71C7B1D6130F340E004BF975 /* SDL_audio.c */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.c; path = SDL_audio.c; sourceTree = "<group>"; };
71C7B1D7130F340E004BF975 /* SDL_audio_c.h */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.h; path = SDL_audio_c.h; sourceTree = "<group>"; };
71C7B1D8130F340E004BF975 /* SDL_audiocvt.c */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.c; path = SDL_audiocvt.c; sourceTree = "<group>"; };
71C7B1DB130F340E004BF975 /* SDL_audiomem.h */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.h; path = SDL_audiomem.h; sourceTree = "<group>"; };
71C7B1DC130F340E004BF975 /* SDL_audiotypecvt.c */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.c; path = SDL_audiotypecvt.c; sourceTree = "<group>"; };
71C7B1DD130F340E004BF975 /* SDL_mixer.c */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.c; path = SDL_mixer.c; sourceTree = "<group>"; };
71C7B1DE130F340E004BF975 /* SDL_sysaudio.h */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.h; path = SDL_sysaudio.h; sourceTree = "<group>"; };
71C7B1DF130F340E004BF975 /* SDL_wave.c */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.c; path = SDL_wave.c; sourceTree = "<group>"; };
71C7B1E0130F340E004BF975 /* SDL_wave.h */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.h; path = SDL_wave.h; sourceTree = "<group>"; };
71C7B1E3130F340E004BF975 /* SDL_rwopsbundlesupport.h */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.h; path = SDL_rwopsbundlesupport.h; sourceTree = "<group>"; };
71C7B1E4130F340E004BF975 /* SDL_rwopsbundlesupport.m */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.objc; path = SDL_rwopsbundlesupport.m; sourceTree = "<group>"; };
71C7B1E5130F340E004BF975 /* SDL_rwops.c */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.c; path = SDL_rwops.c; sourceTree = "<group>"; };
71C7B1F3130F340E004BF975 /* SDL.c */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.c; path = SDL.c; sourceTree = "<group>"; };
71C7B1F4130F340E004BF975 /* SDL_error.c */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.c; path = SDL_error.c; sourceTree = "<group>"; };
71C7B1F5130F340E004BF975 /* SDL_error_c.h */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.h; path = SDL_error_c.h; sourceTree = "<group>"; };
71C7B1F8130F340E004BF975 /* SDL_syscond.c */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.c; path = SDL_syscond.c; sourceTree = "<group>"; };
71C7B1F9130F340E004BF975 /* SDL_sysmutex.c */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.c; path = SDL_sysmutex.c; sourceTree = "<group>"; };
71C7B1FA130F340E004BF975 /* SDL_sysmutex_c.h */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.h; path = SDL_sysmutex_c.h; sourceTree = "<group>"; };
71C7B1FB130F340E004BF975 /* SDL_syssem.c */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.c; path = SDL_syssem.c; sourceTree = "<group>"; };
71C7B1FC130F340E004BF975 /* SDL_systhread.c */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.c; path = SDL_systhread.c; sourceTree = "<group>"; };
71C7B1FD130F340E004BF975 /* SDL_systhread_c.h */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.h; path = SDL_systhread_c.h; sourceTree = "<group>"; };
71C7B1FE130F340E004BF975 /* SDL_systhread.h */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.h; path = SDL_systhread.h; sourceTree = "<group>"; };
71C7B1FF130F340E004BF975 /* SDL_thread.c */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.c; path = SDL_thread.c; sourceTree = "<group>"; };
71C7B200130F340E004BF975 /* SDL_thread_c.h */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.h; path = SDL_thread_c.h; sourceTree = "<group>"; };
71D88523130EF83900F150FF /* sdl.c */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.c; path = sdl.c; sourceTree = "<group>"; };
71D88634130EFFB500F150FF /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreAudio.framework; path = /System/Library/Frameworks/CoreAudio.framework; sourceTree = "<absolute>"; };
71D8864E130F009D00F150FF /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = IOKit.framework; path = /System/Library/Frameworks/IOKit.framework; sourceTree = "<absolute>"; };
71D88653130F00B400F150FF /* AudioUnit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioUnit.framework; path = /System/Library/Frameworks/AudioUnit.framework; sourceTree = "<absolute>"; };
71E4E793109DC529003BB7AC /* adsr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = adsr.c; sourceTree = "<group>"; };
71E4E794109DC529003BB7AC /* adsr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = adsr.h; sourceTree = "<group>"; };
71E4E796109DC529003BB7AC /* cfg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cfg.h; sourceTree = "<group>"; };
71E4E797109DC529003BB7AC /* dma.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = dma.c; sourceTree = "<group>"; };
71E4E798109DC529003BB7AC /* dma.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dma.h; sourceTree = "<group>"; };
71E4E799109DC529003BB7AC /* dsoundoss.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dsoundoss.h; sourceTree = "<group>"; };
71E4E79A109DC529003BB7AC /* externals.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = externals.h; sourceTree = "<group>"; };
71E4E79B109DC529003BB7AC /* freeze.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = freeze.c; sourceTree = "<group>"; };
71E4E79C109DC529003BB7AC /* gauss_i.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gauss_i.h; sourceTree = "<group>"; };
71E4E79E109DC529003BB7AC /* psemuxa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = psemuxa.h; sourceTree = "<group>"; };
71E4E79F109DC529003BB7AC /* registers.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = registers.c; sourceTree = "<group>"; };
71E4E7A0109DC529003BB7AC /* registers.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = registers.h; sourceTree = "<group>"; };
71E4E7A1109DC529003BB7AC /* regs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = regs.h; sourceTree = "<group>"; };
71E4E7A2109DC529003BB7AC /* reverb.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = reverb.c; sourceTree = "<group>"; };
71E4E7A3109DC529003BB7AC /* reverb.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = reverb.h; sourceTree = "<group>"; };
71E4E7A4109DC529003BB7AC /* spu.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; lineEnding = 2; path = spu.c; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.c; };
71E4E7A5109DC529003BB7AC /* spu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = spu.h; sourceTree = "<group>"; };
71E4E7A6109DC529003BB7AC /* stdafx.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stdafx.h; sourceTree = "<group>"; };
71E4E7A7109DC529003BB7AC /* xa.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = xa.c; sourceTree = "<group>"; };
71E4E7A8109DC529003BB7AC /* xa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = xa.h; sourceTree = "<group>"; };
8D576316048677EA00EA77CD /* PeopsSpuSDL.psxplugin */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = PeopsSpuSDL.psxplugin; sourceTree = BUILT_PRODUCTS_DIR; };
8D576317048677EA00EA77CD /* Info-SDL.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "Info-SDL.plist"; sourceTree = "<group>"; };
A1A2073D13816B1D005EE84C /* externals.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = externals.c; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
554588401783DF39008A7407 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
554588461783DF39008A7407 /* Cocoa.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
5599695413AFCD2900B0216B /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
5545885D1783E00E008A7407 /* libSPUSharedCode.dylib in Frameworks */,
5599695513AFCD2900B0216B /* CoreFoundation.framework in Frameworks */,
5599695713AFCD2900B0216B /* AppKit.framework in Frameworks */,
5599696F13AFCE1D00B0216B /* OpenAL.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
8D576313048677EA00EA77CD /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
554588581783DFE0008A7407 /* libSPUSharedCode.dylib in Frameworks */,
8D576314048677EA00EA77CD /* CoreFoundation.framework in Frameworks */,
2BFF7F3E0715D2E00061278A /* Carbon.framework in Frameworks */,
2B7B2BD1072DAE5D007F0C35 /* AppKit.framework in Frameworks */,
71D88636130EFFB500F150FF /* CoreAudio.framework in Frameworks */,
71D8864F130F009E00F150FF /* IOKit.framework in Frameworks */,
71D88654130F00B400F150FF /* AudioUnit.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
089C166AFE841209C02AAC07 /* PSX Plugin */ = {
isa = PBXGroup;
children = (
08FB77AFFE84173DC02AAC07 /* Source */,
2B7B2B8E072D9BD6007F0C35 /* macsrc */,
089C167CFE841241C02AAC07 /* Resources */,
71C7B1C0130F340E004BF975 /* SDL */,
089C1671FE841209C02AAC07 /* External Frameworks and Libraries */,
554588441783DF39008A7407 /* Frameworks */,
19C28FB6FE9D52B211CA2CBB /* Products */,
8D576317048677EA00EA77CD /* Info-SDL.plist */,
55C8AB0C146DCD0E005ACCCB /* Info-AL.plist */,
);
name = "PSX Plugin";
sourceTree = "<group>";
};
089C1671FE841209C02AAC07 /* External Frameworks and Libraries */ = {
isa = PBXGroup;
children = (
71D88653130F00B400F150FF /* AudioUnit.framework */,
71D8864E130F009D00F150FF /* IOKit.framework */,
71D88634130EFFB500F150FF /* CoreAudio.framework */,
2B7B2BD0072DAE5D007F0C35 /* AppKit.framework */,
2BFF7F3D0715D2E00061278A /* Carbon.framework */,
0AA1909FFE8422F4C02AAC07 /* CoreFoundation.framework */,
5599696E13AFCE1D00B0216B /* OpenAL.framework */,
);
name = "External Frameworks and Libraries";
sourceTree = "<group>";
};
089C167CFE841241C02AAC07 /* Resources */ = {
isa = PBXGroup;
children = (
55858D42178654D90068B8FC /* Configs */,
554588691783E5FE008A7407 /* Shared */,
5506635714AB91C100C7C565 /* OpenAL */,
5506636014AB91C100C7C565 /* SDL */,
);
name = Resources;
path = Resorces;
sourceTree = "<group>";
};
08FB77AFFE84173DC02AAC07 /* Source */ = {
isa = PBXGroup;
children = (
A1A2073D13816B1D005EE84C /* externals.c */,
71E4E793109DC529003BB7AC /* adsr.c */,
71E4E794109DC529003BB7AC /* adsr.h */,
71E4E796109DC529003BB7AC /* cfg.h */,
71E4E797109DC529003BB7AC /* dma.c */,
71E4E798109DC529003BB7AC /* dma.h */,
71E4E799109DC529003BB7AC /* dsoundoss.h */,
5517C065136217DE00706CCF /* externals.c */,
71E4E79A109DC529003BB7AC /* externals.h */,
71E4E79B109DC529003BB7AC /* freeze.c */,
71E4E79C109DC529003BB7AC /* gauss_i.h */,
71E4E79E109DC529003BB7AC /* psemuxa.h */,
71E4E79F109DC529003BB7AC /* registers.c */,
71E4E7A0109DC529003BB7AC /* registers.h */,
71E4E7A1109DC529003BB7AC /* regs.h */,
71E4E7A2109DC529003BB7AC /* reverb.c */,
71E4E7A3109DC529003BB7AC /* reverb.h */,
71D88523130EF83900F150FF /* sdl.c */,
71E4E7A4109DC529003BB7AC /* spu.c */,
71E4E7A5109DC529003BB7AC /* spu.h */,
71E4E7A6109DC529003BB7AC /* stdafx.h */,
5599692713AFCCC600B0216B /* openal.c */,
71E4E7A7109DC529003BB7AC /* xa.c */,
71E4E7A8109DC529003BB7AC /* xa.h */,
);
name = Source;
path = ../../../plugins/dfsound;
sourceTree = "<group>";
};
19C28FB6FE9D52B211CA2CBB /* Products */ = {
isa = PBXGroup;
children = (
8D576316048677EA00EA77CD /* PeopsSpuSDL.psxplugin */,
5599695E13AFCD2900B0216B /* PeopsSpuAL.psxplugin */,
554588431783DF39008A7407 /* libSPUSharedCode.dylib */,
);
name = Products;
sourceTree = "<group>";
};
2B7B2B8E072D9BD6007F0C35 /* macsrc */ = {
isa = PBXGroup;
children = (
5586006A1785136A00CB3D85 /* ARCBridge.h */,
55F36E4B146CA0A900718DE6 /* maccfg.h */,
2B7B2B91072D9BE6007F0C35 /* PluginController.h */,
2B7B2B92072D9BE6007F0C35 /* PluginController.m */,
2B7B2BE6072DB1B6007F0C35 /* NamedSlider.h */,
2B7B2BE7072DB1B6007F0C35 /* NamedSlider.m */,
554588761783F2E3008A7407 /* SPUPluginController.h */,
554588771783F2E3008A7407 /* SPUPluginController.m */,
);
path = macsrc;
sourceTree = "<group>";
};
5506635714AB91C100C7C565 /* OpenAL */ = {
isa = PBXGroup;
children = (
5506635A14AB91C100C7C565 /* InfoPlist.strings */,
);
path = OpenAL;
sourceTree = "<group>";
};
5506636014AB91C100C7C565 /* SDL */ = {
isa = PBXGroup;
children = (
5506636314AB91C100C7C565 /* InfoPlist.strings */,
);
path = SDL;
sourceTree = "<group>";
};
554588441783DF39008A7407 /* Frameworks */ = {
isa = PBXGroup;
children = (
554588451783DF39008A7407 /* Cocoa.framework */,
554588471783DF39008A7407 /* Other Frameworks */,
);
name = Frameworks;
sourceTree = "<group>";
};
554588471783DF39008A7407 /* Other Frameworks */ = {
isa = PBXGroup;
children = (
554588481783DF39008A7407 /* AppKit.framework */,
554588491783DF39008A7407 /* CoreData.framework */,
5545884A1783DF39008A7407 /* Foundation.framework */,
);
name = "Other Frameworks";
sourceTree = "<group>";
};
554588691783E5FE008A7407 /* Shared */ = {
isa = PBXGroup;
children = (
5545886A1783E5FE008A7407 /* Credits.rtf */,
5545886C1783E5FE008A7407 /* Localizable.strings */,
5545886E1783E5FE008A7407 /* NetSfPeopsSpuPluginMain.xib */,
);
path = Shared;
sourceTree = "<group>";
};
55858D42178654D90068B8FC /* Configs */ = {
isa = PBXGroup;
children = (
55858D3E178654D90068B8FC /* Pcsxr-Debug.xcconfig */,
55858D3F178654D90068B8FC /* Pcsxr-Instrument.xcconfig */,
55858D40178654D90068B8FC /* Pcsxr-Release.xcconfig */,
55858D41178654D90068B8FC /* Pcsxr.xcconfig */,
);
name = Configs;
path = ../../../Configs;
sourceTree = "<group>";
};
71C7B1C0130F340E004BF975 /* SDL */ = {
isa = PBXGroup;
children = (
71C7B1C1130F340E004BF975 /* include */,
71C7B1D1130F340E004BF975 /* src */,
);
name = SDL;
path = ../Common/SDL;
sourceTree = SOURCE_ROOT;
};
71C7B1C1130F340E004BF975 /* include */ = {
isa = PBXGroup;
children = (
71C7B1C2130F340E004BF975 /* begin_code.h */,
71C7B1C3130F340E004BF975 /* close_code.h */,
71C7B1C4130F340E004BF975 /* SDL.h */,
71C7B1C5130F340E004BF975 /* SDL_audio.h */,
71C7B1C6130F340E004BF975 /* SDL_config.h */,
71C7B1C7130F340E004BF975 /* SDL_endian.h */,
71C7B1C8130F340E004BF975 /* SDL_error.h */,
71C7B1C9130F340E004BF975 /* SDL_haptic.h */,
71C7B1CA130F340E004BF975 /* SDL_joystick.h */,
71C7B1CB130F340E004BF975 /* SDL_main.h */,
71C7B1CC130F340E004BF975 /* SDL_mutex.h */,
71C7B1CD130F340E004BF975 /* SDL_platform.h */,
71C7B1CE130F340E004BF975 /* SDL_rwops.h */,
71C7B1CF130F340E004BF975 /* SDL_stdinc.h */,
71C7B1D0130F340E004BF975 /* SDL_thread.h */,
);
path = include;
sourceTree = "<group>";
};
71C7B1D1130F340E004BF975 /* src */ = {
isa = PBXGroup;
children = (
71C7B1D2130F340E004BF975 /* audio */,
71C7B1E1130F340E004BF975 /* file */,
71C7B1F6130F340E004BF975 /* thread */,
71C7B1F3130F340E004BF975 /* SDL.c */,
71C7B1F4130F340E004BF975 /* SDL_error.c */,
71C7B1F5130F340E004BF975 /* SDL_error_c.h */,
);
path = src;
sourceTree = "<group>";
};
71C7B1D2130F340E004BF975 /* audio */ = {
isa = PBXGroup;
children = (
71C7B1D3130F340E004BF975 /* macosx */,
71C7B1D6130F340E004BF975 /* SDL_audio.c */,
71C7B1D7130F340E004BF975 /* SDL_audio_c.h */,
71C7B1D8130F340E004BF975 /* SDL_audiocvt.c */,
71C7B1DB130F340E004BF975 /* SDL_audiomem.h */,
71C7B1DC130F340E004BF975 /* SDL_audiotypecvt.c */,
71C7B1DD130F340E004BF975 /* SDL_mixer.c */,
71C7B1DE130F340E004BF975 /* SDL_sysaudio.h */,
71C7B1DF130F340E004BF975 /* SDL_wave.c */,
71C7B1E0130F340E004BF975 /* SDL_wave.h */,
);
path = audio;
sourceTree = "<group>";
};
71C7B1D3130F340E004BF975 /* macosx */ = {
isa = PBXGroup;
children = (
71C7B1D4130F340E004BF975 /* SDL_coreaudio.c */,
71C7B1D5130F340E004BF975 /* SDL_coreaudio.h */,
);
path = macosx;
sourceTree = "<group>";
};
71C7B1E1130F340E004BF975 /* file */ = {
isa = PBXGroup;
children = (
71C7B1E2130F340E004BF975 /* cocoa */,
71C7B1E5130F340E004BF975 /* SDL_rwops.c */,
);
path = file;
sourceTree = "<group>";
};
71C7B1E2130F340E004BF975 /* cocoa */ = {
isa = PBXGroup;
children = (
71C7B1E3130F340E004BF975 /* SDL_rwopsbundlesupport.h */,
71C7B1E4130F340E004BF975 /* SDL_rwopsbundlesupport.m */,
);
path = cocoa;
sourceTree = "<group>";
};
71C7B1F6130F340E004BF975 /* thread */ = {
isa = PBXGroup;
children = (
71C7B1F7130F340E004BF975 /* pthread */,
71C7B1FE130F340E004BF975 /* SDL_systhread.h */,
71C7B1FF130F340E004BF975 /* SDL_thread.c */,
71C7B200130F340E004BF975 /* SDL_thread_c.h */,
);
path = thread;
sourceTree = "<group>";
};
71C7B1F7130F340E004BF975 /* pthread */ = {
isa = PBXGroup;
children = (
71C7B1F8130F340E004BF975 /* SDL_syscond.c */,
71C7B1F9130F340E004BF975 /* SDL_sysmutex.c */,
71C7B1FA130F340E004BF975 /* SDL_sysmutex_c.h */,
71C7B1FB130F340E004BF975 /* SDL_syssem.c */,
71C7B1FC130F340E004BF975 /* SDL_systhread.c */,
71C7B1FD130F340E004BF975 /* SDL_systhread_c.h */,
);
path = pthread;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXHeadersBuildPhase section */
554588411783DF39008A7407 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
554588551783DF8B008A7407 /* NamedSlider.h in Headers */,
554588781783F2E3008A7407 /* SPUPluginController.h in Headers */,
5586006B1785136A00CB3D85 /* ARCBridge.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
554588421783DF39008A7407 /* SPUSharedCode */ = {
isa = PBXNativeTarget;
buildConfigurationList = 554588531783DF39008A7407 /* Build configuration list for PBXNativeTarget "SPUSharedCode" */;
buildPhases = (
5545883F1783DF39008A7407 /* Sources */,
554588401783DF39008A7407 /* Frameworks */,
554588411783DF39008A7407 /* Headers */,
);
buildRules = (
);
dependencies = (
);
name = SPUSharedCode;
productName = PCSXRNamedSliders;
productReference = 554588431783DF39008A7407 /* libSPUSharedCode.dylib */;
productType = "com.apple.product-type.library.dynamic";
};
5599693613AFCD2900B0216B /* PeopsSpuAL */ = {
isa = PBXNativeTarget;
buildConfigurationList = 5599695B13AFCD2900B0216B /* Build configuration list for PBXNativeTarget "PeopsSpuAL" */;
buildPhases = (
5599693713AFCD2900B0216B /* Resources */,
5599693B13AFCD2900B0216B /* Sources */,
5599695413AFCD2900B0216B /* Frameworks */,
5545885E1783E015008A7407 /* Copy Frameworks */,
);
buildRules = (
);
dependencies = (
5545885C1783E00A008A7407 /* PBXTargetDependency */,
);
name = PeopsSpuAL;
productInstallPath = "$(HOME)/Library/Bundles";
productName = "PSX Plugin";
productReference = 5599695E13AFCD2900B0216B /* PeopsSpuAL.psxplugin */;
productType = "com.apple.product-type.bundle";
};
8D57630D048677EA00EA77CD /* PeopsSpuSDL */ = {
isa = PBXNativeTarget;
buildConfigurationList = 71155B260FDFA2EB00EC0BC5 /* Build configuration list for PBXNativeTarget "PeopsSpuSDL" */;
buildPhases = (
8D57630F048677EA00EA77CD /* Resources */,
8D576311048677EA00EA77CD /* Sources */,
8D576313048677EA00EA77CD /* Frameworks */,
554588591783DFE6008A7407 /* Copy Frameworks */,
);
buildRules = (
);
dependencies = (
554588571783DFD9008A7407 /* PBXTargetDependency */,
);
name = PeopsSpuSDL;
productInstallPath = "$(HOME)/Library/Bundles";
productName = "PSX Plugin";
productReference = 8D576316048677EA00EA77CD /* PeopsSpuSDL.psxplugin */;
productType = "com.apple.product-type.bundle";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
089C1669FE841209C02AAC07 /* Project object */ = {
isa = PBXProject;
attributes = {
LastUpgradeCheck = 0460;
};
buildConfigurationList = 71155B2B0FDFA2EB00EC0BC5 /* Build configuration list for PBXProject "PeopsSPU" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = English;
hasScannedForEncodings = 1;
knownRegions = (
English,
Japanese,
French,
German,
);
mainGroup = 089C166AFE841209C02AAC07 /* PSX Plugin */;
projectDirPath = "";
projectRoot = "";
targets = (
8D57630D048677EA00EA77CD /* PeopsSpuSDL */,
5599693613AFCD2900B0216B /* PeopsSpuAL */,
554588421783DF39008A7407 /* SPUSharedCode */,
);
};
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
5599693713AFCD2900B0216B /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
5506636C14AB91C100C7C565 /* InfoPlist.strings in Resources */,
554588711783E5FE008A7407 /* Credits.rtf in Resources */,
554588731783E5FE008A7407 /* Localizable.strings in Resources */,
554588751783E5FE008A7407 /* NetSfPeopsSpuPluginMain.xib in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
8D57630F048677EA00EA77CD /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
5506637314AB91C100C7C565 /* InfoPlist.strings in Resources */,
554588701783E5FE008A7407 /* Credits.rtf in Resources */,
554588721783E5FE008A7407 /* Localizable.strings in Resources */,
554588741783E5FE008A7407 /* NetSfPeopsSpuPluginMain.xib in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
5545883F1783DF39008A7407 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
554588541783DF87008A7407 /* NamedSlider.m in Sources */,
554588791783F2E3008A7407 /* SPUPluginController.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
5599693B13AFCD2900B0216B /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
5599693C13AFCD2900B0216B /* PluginController.m in Sources */,
5599693E13AFCD2900B0216B /* dma.c in Sources */,
5599693F13AFCD2900B0216B /* freeze.c in Sources */,
5599694013AFCD2900B0216B /* registers.c in Sources */,
5599694113AFCD2900B0216B /* spu.c in Sources */,
5599694213AFCD2900B0216B /* xa.c in Sources */,
5599695313AFCD2900B0216B /* externals.c in Sources */,
5599696C13AFCD8B00B0216B /* openal.c in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
8D576311048677EA00EA77CD /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
2B7B2B94072D9BE6007F0C35 /* PluginController.m in Sources */,
71E4E7AB109DC529003BB7AC /* dma.c in Sources */,
71E4E7AC109DC529003BB7AC /* freeze.c in Sources */,
71E4E7AE109DC529003BB7AC /* registers.c in Sources */,
71E4E7B0109DC529003BB7AC /* spu.c in Sources */,
71E4E7B1109DC529003BB7AC /* xa.c in Sources */,
71C7B206130F340E004BF975 /* SDL_mixer.c in Sources */,
71C7B207130F340E004BF975 /* SDL_wave.c in Sources */,
71C7B208130F340E004BF975 /* SDL_rwopsbundlesupport.m in Sources */,
71C7B209130F340E004BF975 /* SDL_rwops.c in Sources */,
71C7B210130F340E004BF975 /* SDL_syscond.c in Sources */,
71C7B211130F340E004BF975 /* SDL_sysmutex.c in Sources */,
71C7B212130F340E004BF975 /* SDL_syssem.c in Sources */,
71C7B213130F340E004BF975 /* SDL_systhread.c in Sources */,
71C7B214130F340E004BF975 /* SDL_thread.c in Sources */,
A1A2073E13816B1D005EE84C /* externals.c in Sources */,
5599696613AFCD7F00B0216B /* SDL_error.c in Sources */,
5599696713AFCD7F00B0216B /* SDL_coreaudio.c in Sources */,
5599696813AFCD8000B0216B /* SDL_audiotypecvt.c in Sources */,
5599696913AFCD8100B0216B /* SDL_audiocvt.c in Sources */,
5599696A13AFCD8100B0216B /* SDL_audio.c in Sources */,
5599696B13AFCD8300B0216B /* SDL.c in Sources */,
5599696D13AFCD9300B0216B /* sdl.c in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXTargetDependency section */
554588571783DFD9008A7407 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = 554588421783DF39008A7407 /* SPUSharedCode */;
targetProxy = 554588561783DFD9008A7407 /* PBXContainerItemProxy */;
};
5545885C1783E00A008A7407 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = 554588421783DF39008A7407 /* SPUSharedCode */;
targetProxy = 5545885B1783E00A008A7407 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin PBXVariantGroup section */
5506635A14AB91C100C7C565 /* InfoPlist.strings */ = {
isa = PBXVariantGroup;
children = (
5506635B14AB91C100C7C565 /* English */,
);
name = InfoPlist.strings;
sourceTree = "<group>";
};
5506636314AB91C100C7C565 /* InfoPlist.strings */ = {
isa = PBXVariantGroup;
children = (
5506636414AB91C100C7C565 /* English */,
);
name = InfoPlist.strings;
sourceTree = "<group>";
};
5545886A1783E5FE008A7407 /* Credits.rtf */ = {
isa = PBXVariantGroup;
children = (
5545886B1783E5FE008A7407 /* English */,
);
name = Credits.rtf;
sourceTree = "<group>";
};
5545886C1783E5FE008A7407 /* Localizable.strings */ = {
isa = PBXVariantGroup;
children = (
5545886D1783E5FE008A7407 /* English */,
);
name = Localizable.strings;
sourceTree = "<group>";
};
5545886E1783E5FE008A7407 /* NetSfPeopsSpuPluginMain.xib */ = {
isa = PBXVariantGroup;
children = (
5545886F1783E5FE008A7407 /* English */,
);
name = NetSfPeopsSpuPluginMain.xib;
sourceTree = "<group>";
};
/* End PBXVariantGroup section */
/* Begin XCBuildConfiguration section */
554588511783DF39008A7407 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
"CLANG_ENABLE_OBJC_ARC[arch=x86_64]" = YES;
CLANG_WARN_EMPTY_BODY = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
EXECUTABLE_PREFIX = lib;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_ENABLE_OBJC_EXCEPTIONS = YES;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
INSTALL_PATH = "@rpath";
PRODUCT_NAME = "$(TARGET_NAME)";
};
name = Debug;
};
554588521783DF39008A7407 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
"CLANG_ENABLE_OBJC_ARC[arch=x86_64]" = YES;
CLANG_WARN_EMPTY_BODY = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
EXECUTABLE_PREFIX = lib;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_ENABLE_OBJC_EXCEPTIONS = YES;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
INSTALL_PATH = "@rpath";
PRODUCT_NAME = "$(TARGET_NAME)";
};
name = Release;
};
5599695C13AFCD2900B0216B /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
GCC_PREPROCESSOR_DEFINITIONS = (
"PCSXRPLUG=ALSound",
USEOPENAL,
"$(inherited)",
);
HEADER_SEARCH_PATHS = (
src/,
../../../plugins/dfsound,
);
INFOPLIST_FILE = "Info-AL.plist";
INSTALL_PATH = "$(USER_LIBRARY_DIR)/Playstation Emulator Plugins";
LD_RUNPATH_SEARCH_PATHS = "@loader_path/../Frameworks";
PRODUCT_NAME = "$(TARGET_NAME)";
WRAPPER_EXTENSION = psxplugin;
};
name = Debug;
};
5599695D13AFCD2900B0216B /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
GCC_PREPROCESSOR_DEFINITIONS = (
"PCSXRPLUG=ALSound",
USEOPENAL,
"$(inherited)",
);
HEADER_SEARCH_PATHS = (
src/,
../../../plugins/dfsound,
);
INFOPLIST_FILE = "Info-AL.plist";
INSTALL_PATH = "$(USER_LIBRARY_DIR)/Playstation Emulator Plugins";
LD_RUNPATH_SEARCH_PATHS = "@loader_path/../Frameworks";
PRODUCT_NAME = "$(TARGET_NAME)";
WRAPPER_EXTENSION = psxplugin;
};
name = Release;
};
71155B270FDFA2EB00EC0BC5 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
GCC_PREPROCESSOR_DEFINITIONS = (
"PCSXRPLUG=SDLSound",
USESDL,
SDL_JOYSTICK_DISABLED,
"$(inherited)",
);
HEADER_SEARCH_PATHS = (
src/,
../../../plugins/dfsound,
../Common/SDL/include,
);
INFOPLIST_FILE = "Info-SDL.plist";
INSTALL_PATH = "$(USER_LIBRARY_DIR)/Playstation Emulator Plugins";
LD_RUNPATH_SEARCH_PATHS = "@loader_path/../Frameworks";
PRODUCT_NAME = "$(TARGET_NAME)";
WRAPPER_EXTENSION = psxplugin;
};
name = Debug;
};
71155B290FDFA2EB00EC0BC5 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
GCC_PREPROCESSOR_DEFINITIONS = (
"PCSXRPLUG=SDLSound",
USESDL,
SDL_JOYSTICK_DISABLED,
"$(inherited)",
);
HEADER_SEARCH_PATHS = (
src/,
../../../plugins/dfsound,
../Common/SDL/include,
);
INFOPLIST_FILE = "Info-SDL.plist";
INSTALL_PATH = "$(USER_LIBRARY_DIR)/Playstation Emulator Plugins";
LD_RUNPATH_SEARCH_PATHS = "@loader_path/../Frameworks";
PRODUCT_NAME = "$(TARGET_NAME)";
WRAPPER_EXTENSION = psxplugin;
};
name = Release;
};
71155B2C0FDFA2EB00EC0BC5 /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 55858D3E178654D90068B8FC /* Pcsxr-Debug.xcconfig */;
buildSettings = {
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
};
name = Debug;
};
71155B2E0FDFA2EB00EC0BC5 /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 55858D40178654D90068B8FC /* Pcsxr-Release.xcconfig */;
buildSettings = {
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
};
name = Release;
};
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
554588531783DF39008A7407 /* Build configuration list for PBXNativeTarget "SPUSharedCode" */ = {
isa = XCConfigurationList;
buildConfigurations = (
554588511783DF39008A7407 /* Debug */,
554588521783DF39008A7407 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
5599695B13AFCD2900B0216B /* Build configuration list for PBXNativeTarget "PeopsSpuAL" */ = {
isa = XCConfigurationList;
buildConfigurations = (
5599695C13AFCD2900B0216B /* Debug */,
5599695D13AFCD2900B0216B /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
71155B260FDFA2EB00EC0BC5 /* Build configuration list for PBXNativeTarget "PeopsSpuSDL" */ = {
isa = XCConfigurationList;
buildConfigurations = (
71155B270FDFA2EB00EC0BC5 /* Debug */,
71155B290FDFA2EB00EC0BC5 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
71155B2B0FDFA2EB00EC0BC5 /* Build configuration list for PBXProject "PeopsSPU" */ = {
isa = XCConfigurationList;
buildConfigurations = (
71155B2C0FDFA2EB00EC0BC5 /* Debug */,
71155B2E0FDFA2EB00EC0BC5 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
rootObject = 089C1669FE841209C02AAC07 /* Project object */;
}

View File

@ -1,441 +0,0 @@
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {
/* Begin PBXBuildFile section */
28586CC914651E9B0082B8EC /* NetSfPeopsSoftGPUConfig.xib in Resources */ = {isa = PBXBuildFile; fileRef = 28586CC714651E9B0082B8EC /* NetSfPeopsSoftGPUConfig.xib */; };
28586CCB14651EAB0082B8EC /* NetSfPeopsSoftGPUInterface.xib in Resources */ = {isa = PBXBuildFile; fileRef = 28586CCA14651EAB0082B8EC /* NetSfPeopsSoftGPUInterface.xib */; };
2B038C07069183300082466B /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 2B038C05069183300082466B /* InfoPlist.strings */; };
2B957EB10635DFE400543905 /* PluginWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B957EAF0635DFE400543905 /* PluginWindow.m */; };
2B959DC106342C22000F2A2D /* drawgl.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B3E5D64062B2CC1001D796E /* drawgl.m */; };
2B959DCD06342C24000F2A2D /* PluginGLView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BAF4FCA0632967A00DB9A16 /* PluginGLView.m */; };
2B959DD506342C25000F2A2D /* PluginWindowController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B3E5DF1062B36FB001D796E /* PluginWindowController.m */; };
2B959E4406342D32000F2A2D /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2B959E4306342D32000F2A2D /* OpenGL.framework */; };
2BB260A90777462E00F6854C /* PluginConfigController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BB260A70777462E00F6854C /* PluginConfigController.m */; };
2BD2E769077AF53E00657C69 /* Credits.rtf in Resources */ = {isa = PBXBuildFile; fileRef = 2BD2E767077AF53E00657C69 /* Credits.rtf */; };
2BD7C777076E1FAB000F05ED /* GLUT.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2B51949E06B3D2D200744730 /* GLUT.framework */; };
552E4CAE1474730B00FB231F /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 552E4CB01474730B00FB231F /* Localizable.strings */; };
5555E0C41606839300C0A310 /* gpuPeteOGL2.slf in Resources */ = {isa = PBXBuildFile; fileRef = 5555E0C21606839300C0A310 /* gpuPeteOGL2.slf */; };
5555E0C51606839300C0A310 /* gpuPeteOGL2.slv in Resources */ = {isa = PBXBuildFile; fileRef = 5555E0C31606839300C0A310 /* gpuPeteOGL2.slv */; };
5586006717850E7600CB3D85 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5586006617850E7600CB3D85 /* Cocoa.framework */; };
71E9EC06109F24E700E98D1D /* fps.c in Sources */ = {isa = PBXBuildFile; fileRef = 71E9EBF4109F24E600E98D1D /* fps.c */; };
71E9EC08109F24E700E98D1D /* gpu.c in Sources */ = {isa = PBXBuildFile; fileRef = 71E9EBF6109F24E600E98D1D /* gpu.c */; };
71E9EC0B109F24E700E98D1D /* key.c in Sources */ = {isa = PBXBuildFile; fileRef = 71E9EBF9109F24E600E98D1D /* key.c */; };
71E9EC0D109F24E700E98D1D /* menu.c in Sources */ = {isa = PBXBuildFile; fileRef = 71E9EBFB109F24E600E98D1D /* menu.c */; };
71E9EC0F109F24E700E98D1D /* prim.c in Sources */ = {isa = PBXBuildFile; fileRef = 71E9EBFD109F24E700E98D1D /* prim.c */; };
71E9EC11109F24E700E98D1D /* soft.c in Sources */ = {isa = PBXBuildFile; fileRef = 71E9EBFF109F24E700E98D1D /* soft.c */; };
71E9EC14109F24E700E98D1D /* zn.c in Sources */ = {isa = PBXBuildFile; fileRef = 71E9EC02109F24E700E98D1D /* zn.c */; };
/* End PBXBuildFile section */
/* Begin PBXFileReference section */
28586CC814651E9B0082B8EC /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = English.lproj/NetSfPeopsSoftGPUConfig.xib; sourceTree = "<group>"; };
28586CCA14651EAB0082B8EC /* NetSfPeopsSoftGPUInterface.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NetSfPeopsSoftGPUInterface.xib; sourceTree = "<group>"; };
2B038C06069183300082466B /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = "<group>"; };
2B038D2206918AA80082466B /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
2B3E5D64062B2CC1001D796E /* drawgl.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = drawgl.m; path = macsrc/drawgl.m; sourceTree = SOURCE_ROOT; };
2B3E5DF0062B36FB001D796E /* PluginWindowController.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = PluginWindowController.h; path = macsrc/PluginWindowController.h; sourceTree = SOURCE_ROOT; };
2B3E5DF1062B36FB001D796E /* PluginWindowController.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; name = PluginWindowController.m; path = macsrc/PluginWindowController.m; sourceTree = SOURCE_ROOT; };
2B51949E06B3D2D200744730 /* GLUT.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GLUT.framework; path = /System/Library/Frameworks/GLUT.framework; sourceTree = "<absolute>"; };
2B957EAE0635DFE400543905 /* PluginWindow.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = PluginWindow.h; path = macsrc/PluginWindow.h; sourceTree = SOURCE_ROOT; };
2B957EAF0635DFE400543905 /* PluginWindow.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; name = PluginWindow.m; path = macsrc/PluginWindow.m; sourceTree = SOURCE_ROOT; };
2B959E4306342D32000F2A2D /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGL.framework; path = /System/Library/Frameworks/OpenGL.framework; sourceTree = "<absolute>"; };
2BAF4FC90632967A00DB9A16 /* PluginGLView.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = PluginGLView.h; path = macsrc/PluginGLView.h; sourceTree = SOURCE_ROOT; };
2BAF4FCA0632967A00DB9A16 /* PluginGLView.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; name = PluginGLView.m; path = macsrc/PluginGLView.m; sourceTree = SOURCE_ROOT; };
2BAF50930632BB1A00DB9A16 /* gpuPeopsSoftGL.psxplugin */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = gpuPeopsSoftGL.psxplugin; sourceTree = BUILT_PRODUCTS_DIR; };
2BB260A60777462E00F6854C /* PluginConfigController.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = PluginConfigController.h; path = macsrc/PluginConfigController.h; sourceTree = SOURCE_ROOT; };
2BB260A70777462E00F6854C /* PluginConfigController.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; name = PluginConfigController.m; path = macsrc/PluginConfigController.m; sourceTree = SOURCE_ROOT; };
2BD2E768077AF53E00657C69 /* English */ = {isa = PBXFileReference; lastKnownFileType = text.rtf; name = English; path = English.lproj/Credits.rtf; sourceTree = "<group>"; };
552E4CAF1474730B00FB231F /* English */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/Localizable.strings; sourceTree = "<group>"; };
5555E0C21606839300C0A310 /* gpuPeteOGL2.slf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = gpuPeteOGL2.slf; sourceTree = "<group>"; };
5555E0C31606839300C0A310 /* gpuPeteOGL2.slv */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = gpuPeteOGL2.slv; sourceTree = "<group>"; };
5555E0CA160695BF00C0A310 /* SGPUPreferences.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = SGPUPreferences.h; path = macsrc/SGPUPreferences.h; sourceTree = "<group>"; };
55858D4F178656240068B8FC /* Pcsxr-Debug.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = "Pcsxr-Debug.xcconfig"; path = "../../Configs/Pcsxr-Debug.xcconfig"; sourceTree = "<group>"; };
55858D50178656240068B8FC /* Pcsxr-Instrument.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = "Pcsxr-Instrument.xcconfig"; path = "../../Configs/Pcsxr-Instrument.xcconfig"; sourceTree = "<group>"; };
55858D51178656240068B8FC /* Pcsxr-Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = "Pcsxr-Release.xcconfig"; path = "../../Configs/Pcsxr-Release.xcconfig"; sourceTree = "<group>"; };
55858D52178656240068B8FC /* Pcsxr.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Pcsxr.xcconfig; path = ../../Configs/Pcsxr.xcconfig; sourceTree = "<group>"; };
5586006017850E5800CB3D85 /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = System/Library/Frameworks/AppKit.framework; sourceTree = SDKROOT; };
5586006217850E6C00CB3D85 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreFoundation.framework; path = System/Library/Frameworks/CoreFoundation.framework; sourceTree = SDKROOT; };
5586006317850E6C00CB3D85 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
5586006617850E7600CB3D85 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = System/Library/Frameworks/Cocoa.framework; sourceTree = SDKROOT; };
5586006C1785137400CB3D85 /* ARCBridge.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ARCBridge.h; sourceTree = "<group>"; };
55D42F0E168D9A7F0027EBF0 /* ExtendedKeys.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ExtendedKeys.h; path = macsrc/ExtendedKeys.h; sourceTree = "<group>"; };
71E9EBF1109F24E600E98D1D /* cfg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = cfg.h; path = ../../../plugins/dfxvideo/cfg.h; sourceTree = SOURCE_ROOT; };
71E9EBF2109F24E600E98D1D /* draw.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = draw.h; path = ../../../plugins/dfxvideo/draw.h; sourceTree = SOURCE_ROOT; };
71E9EBF3109F24E600E98D1D /* externals.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = externals.h; path = ../../../plugins/dfxvideo/externals.h; sourceTree = SOURCE_ROOT; };
71E9EBF4109F24E600E98D1D /* fps.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = fps.c; path = ../../../plugins/dfxvideo/fps.c; sourceTree = SOURCE_ROOT; };
71E9EBF5109F24E600E98D1D /* fps.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = fps.h; path = ../../../plugins/dfxvideo/fps.h; sourceTree = SOURCE_ROOT; };
71E9EBF6109F24E600E98D1D /* gpu.c */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 1; lastKnownFileType = sourcecode.c.c; name = gpu.c; path = ../../../plugins/dfxvideo/gpu.c; sourceTree = SOURCE_ROOT; usesTabs = 0; };
71E9EBF7109F24E600E98D1D /* gpu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = gpu.h; path = ../../../plugins/dfxvideo/gpu.h; sourceTree = SOURCE_ROOT; };
71E9EBF8109F24E600E98D1D /* interp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = interp.h; path = ../../../plugins/dfxvideo/interp.h; sourceTree = SOURCE_ROOT; };
71E9EBF9109F24E600E98D1D /* key.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = key.c; path = ../../../plugins/dfxvideo/key.c; sourceTree = SOURCE_ROOT; };
71E9EBFA109F24E600E98D1D /* key.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = key.h; path = ../../../plugins/dfxvideo/key.h; sourceTree = SOURCE_ROOT; };
71E9EBFB109F24E600E98D1D /* menu.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = menu.c; path = ../../../plugins/dfxvideo/menu.c; sourceTree = SOURCE_ROOT; };
71E9EBFC109F24E700E98D1D /* menu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = menu.h; path = ../../../plugins/dfxvideo/menu.h; sourceTree = SOURCE_ROOT; };
71E9EBFD109F24E700E98D1D /* prim.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = prim.c; path = ../../../plugins/dfxvideo/prim.c; sourceTree = SOURCE_ROOT; };
71E9EBFE109F24E700E98D1D /* prim.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = prim.h; path = ../../../plugins/dfxvideo/prim.h; sourceTree = SOURCE_ROOT; };
71E9EBFF109F24E700E98D1D /* soft.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = soft.c; path = ../../../plugins/dfxvideo/soft.c; sourceTree = SOURCE_ROOT; };
71E9EC00109F24E700E98D1D /* soft.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = soft.h; path = ../../../plugins/dfxvideo/soft.h; sourceTree = SOURCE_ROOT; };
71E9EC01109F24E700E98D1D /* swap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = swap.h; path = ../../../plugins/dfxvideo/swap.h; sourceTree = SOURCE_ROOT; };
71E9EC02109F24E700E98D1D /* zn.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = zn.c; path = ../../../plugins/dfxvideo/zn.c; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
2BAF50910632BB1A00DB9A16 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
5586006717850E7600CB3D85 /* Cocoa.framework in Frameworks */,
2B959E4406342D32000F2A2D /* OpenGL.framework in Frameworks */,
2BD7C777076E1FAB000F05ED /* GLUT.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
2B3E59FF062AAC1A001D796E = {
isa = PBXGroup;
children = (
71E9EBF0109F24B600E98D1D /* src */,
2BD2E2F40779F50B00657C69 /* macsrc */,
2BD2E818077AFB9F00657C69 /* Resources */,
2B038D2206918AA80082466B /* Info.plist */,
2B3E5A0B062AAC34001D796E /* Frameworks */,
2B3E5A46062AACF3001D796E /* Products */,
);
sourceTree = "<group>";
};
2B3E5A0B062AAC34001D796E /* Frameworks */ = {
isa = PBXGroup;
children = (
5586006617850E7600CB3D85 /* Cocoa.framework */,
2B959E4306342D32000F2A2D /* OpenGL.framework */,
2B51949E06B3D2D200744730 /* GLUT.framework */,
5586006817850E8800CB3D85 /* Additional Frameworks */,
);
name = Frameworks;
sourceTree = "<group>";
};
2B3E5A46062AACF3001D796E /* Products */ = {
isa = PBXGroup;
children = (
2BAF50930632BB1A00DB9A16 /* gpuPeopsSoftGL.psxplugin */,
);
name = Products;
sourceTree = "<group>";
};
2BD2E2F40779F50B00657C69 /* macsrc */ = {
isa = PBXGroup;
children = (
5586006C1785137400CB3D85 /* ARCBridge.h */,
55D42F0E168D9A7F0027EBF0 /* ExtendedKeys.h */,
2BB260A60777462E00F6854C /* PluginConfigController.h */,
2BB260A70777462E00F6854C /* PluginConfigController.m */,
2B3E5DF0062B36FB001D796E /* PluginWindowController.h */,
2B3E5DF1062B36FB001D796E /* PluginWindowController.m */,
2B957EAE0635DFE400543905 /* PluginWindow.h */,
2B957EAF0635DFE400543905 /* PluginWindow.m */,
2BAF4FC90632967A00DB9A16 /* PluginGLView.h */,
2BAF4FCA0632967A00DB9A16 /* PluginGLView.m */,
2B3E5D64062B2CC1001D796E /* drawgl.m */,
5555E0CA160695BF00C0A310 /* SGPUPreferences.h */,
);
name = macsrc;
sourceTree = "<group>";
};
2BD2E818077AFB9F00657C69 /* Resources */ = {
isa = PBXGroup;
children = (
55858D53178656240068B8FC /* Configs */,
5555E0C21606839300C0A310 /* gpuPeteOGL2.slf */,
5555E0C31606839300C0A310 /* gpuPeteOGL2.slv */,
28586CC714651E9B0082B8EC /* NetSfPeopsSoftGPUConfig.xib */,
28586CCA14651EAB0082B8EC /* NetSfPeopsSoftGPUInterface.xib */,
2BD2E767077AF53E00657C69 /* Credits.rtf */,
552E4CB01474730B00FB231F /* Localizable.strings */,
2B038C05069183300082466B /* InfoPlist.strings */,
);
name = Resources;
sourceTree = "<group>";
};
55858D53178656240068B8FC /* Configs */ = {
isa = PBXGroup;
children = (
55858D4F178656240068B8FC /* Pcsxr-Debug.xcconfig */,
55858D50178656240068B8FC /* Pcsxr-Instrument.xcconfig */,
55858D51178656240068B8FC /* Pcsxr-Release.xcconfig */,
55858D52178656240068B8FC /* Pcsxr.xcconfig */,
);
name = Configs;
path = "/Users/cwbetts/makestuff/PCSX-R/macosx/plugins/DFSound/Resorces/../../Bladesio1";
sourceTree = "<absolute>";
};
5586006817850E8800CB3D85 /* Additional Frameworks */ = {
isa = PBXGroup;
children = (
5586006217850E6C00CB3D85 /* CoreFoundation.framework */,
5586006317850E6C00CB3D85 /* Foundation.framework */,
5586006017850E5800CB3D85 /* AppKit.framework */,
);
name = "Additional Frameworks";
sourceTree = "<group>";
};
71E9EBF0109F24B600E98D1D /* src */ = {
isa = PBXGroup;
children = (
71E9EBF1109F24E600E98D1D /* cfg.h */,
71E9EBF2109F24E600E98D1D /* draw.h */,
71E9EBF3109F24E600E98D1D /* externals.h */,
71E9EBF4109F24E600E98D1D /* fps.c */,
71E9EBF5109F24E600E98D1D /* fps.h */,
71E9EBF6109F24E600E98D1D /* gpu.c */,
71E9EBF7109F24E600E98D1D /* gpu.h */,
71E9EBF8109F24E600E98D1D /* interp.h */,
71E9EBF9109F24E600E98D1D /* key.c */,
71E9EBFA109F24E600E98D1D /* key.h */,
71E9EBFB109F24E600E98D1D /* menu.c */,
71E9EBFC109F24E700E98D1D /* menu.h */,
71E9EBFD109F24E700E98D1D /* prim.c */,
71E9EBFE109F24E700E98D1D /* prim.h */,
71E9EBFF109F24E700E98D1D /* soft.c */,
71E9EC00109F24E700E98D1D /* soft.h */,
71E9EC01109F24E700E98D1D /* swap.h */,
71E9EC02109F24E700E98D1D /* zn.c */,
);
name = src;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXNativeTarget section */
2BAF50920632BB1A00DB9A16 /* gpuPeopsSoftGL */ = {
isa = PBXNativeTarget;
buildConfigurationList = 7170842C0FDFD328004F3EB4 /* Build configuration list for PBXNativeTarget "gpuPeopsSoftGL" */;
buildPhases = (
2BAF508F0632BB1A00DB9A16 /* Resources */,
2BAF50900632BB1A00DB9A16 /* Sources */,
2BAF50910632BB1A00DB9A16 /* Frameworks */,
);
buildRules = (
);
dependencies = (
);
name = gpuPeopsSoftGL;
productName = gpuPeopsSoftGL;
productReference = 2BAF50930632BB1A00DB9A16 /* gpuPeopsSoftGL.psxplugin */;
productType = "com.apple.product-type.bundle";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
2B3E5A03062AAC1A001D796E /* Project object */ = {
isa = PBXProject;
attributes = {
LastUpgradeCheck = 0460;
};
buildConfigurationList = 717084310FDFD328004F3EB4 /* Build configuration list for PBXProject "PeopsSoftGPU" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = English;
hasScannedForEncodings = 1;
knownRegions = (
English,
Japanese,
French,
German,
);
mainGroup = 2B3E59FF062AAC1A001D796E;
productRefGroup = 2B3E5A46062AACF3001D796E /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
2BAF50920632BB1A00DB9A16 /* gpuPeopsSoftGL */,
);
};
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
2BAF508F0632BB1A00DB9A16 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
2B038C07069183300082466B /* InfoPlist.strings in Resources */,
2BD2E769077AF53E00657C69 /* Credits.rtf in Resources */,
28586CC914651E9B0082B8EC /* NetSfPeopsSoftGPUConfig.xib in Resources */,
28586CCB14651EAB0082B8EC /* NetSfPeopsSoftGPUInterface.xib in Resources */,
552E4CAE1474730B00FB231F /* Localizable.strings in Resources */,
5555E0C41606839300C0A310 /* gpuPeteOGL2.slf in Resources */,
5555E0C51606839300C0A310 /* gpuPeteOGL2.slv in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
2BAF50900632BB1A00DB9A16 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
2B959DC106342C22000F2A2D /* drawgl.m in Sources */,
2B959DCD06342C24000F2A2D /* PluginGLView.m in Sources */,
2B959DD506342C25000F2A2D /* PluginWindowController.m in Sources */,
2B957EB10635DFE400543905 /* PluginWindow.m in Sources */,
2BB260A90777462E00F6854C /* PluginConfigController.m in Sources */,
71E9EC06109F24E700E98D1D /* fps.c in Sources */,
71E9EC08109F24E700E98D1D /* gpu.c in Sources */,
71E9EC0B109F24E700E98D1D /* key.c in Sources */,
71E9EC0D109F24E700E98D1D /* menu.c in Sources */,
71E9EC0F109F24E700E98D1D /* prim.c in Sources */,
71E9EC11109F24E700E98D1D /* soft.c in Sources */,
71E9EC14109F24E700E98D1D /* zn.c in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXVariantGroup section */
28586CC714651E9B0082B8EC /* NetSfPeopsSoftGPUConfig.xib */ = {
isa = PBXVariantGroup;
children = (
28586CC814651E9B0082B8EC /* English */,
);
name = NetSfPeopsSoftGPUConfig.xib;
sourceTree = "<group>";
};
2B038C05069183300082466B /* InfoPlist.strings */ = {
isa = PBXVariantGroup;
children = (
2B038C06069183300082466B /* English */,
);
name = InfoPlist.strings;
sourceTree = "<group>";
};
2BD2E767077AF53E00657C69 /* Credits.rtf */ = {
isa = PBXVariantGroup;
children = (
2BD2E768077AF53E00657C69 /* English */,
);
name = Credits.rtf;
sourceTree = "<group>";
};
552E4CB01474730B00FB231F /* Localizable.strings */ = {
isa = PBXVariantGroup;
children = (
552E4CAF1474730B00FB231F /* English */,
);
name = Localizable.strings;
sourceTree = "<group>";
};
/* End PBXVariantGroup section */
/* Begin XCBuildConfiguration section */
7170842D0FDFD328004F3EB4 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
GCC_PREPROCESSOR_DEFINITIONS = (
"PCSXRPLUG=SoftGL",
_MACGL,
_DARWIN,
"$(inherited)",
);
GCC_WARN_UNKNOWN_PRAGMAS = NO;
INFOPLIST_FILE = Info.plist;
INSTALL_PATH = "$(USER_LIBRARY_DIR)/Playstation Emulator Plugins";
OPTIMIZATION_CFLAGS = "-finline-functions -finline-limit=1600 -fno-exceptions -funroll-loops -falign-loops=16 -ffast-math";
OTHER_CFLAGS = (
"$(inherited)",
"$(OPTIMIZATION_CFLAGS)",
);
PRODUCT_NAME = "$(TARGET_NAME)";
SECTORDER_FLAGS = "";
WRAPPER_EXTENSION = psxplugin;
};
name = Debug;
};
7170842E0FDFD328004F3EB4 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
GCC_PREPROCESSOR_DEFINITIONS = (
"PCSXRPLUG=SoftGL",
_MACGL,
_DARWIN,
"$(inherited)",
);
GCC_WARN_UNKNOWN_PRAGMAS = NO;
INFOPLIST_FILE = Info.plist;
INSTALL_PATH = "$(USER_LIBRARY_DIR)/Playstation Emulator Plugins";
OPTIMIZATION_CFLAGS = "-finline-functions -finline-limit=1600 -fomit-frame-pointer -fno-exceptions -funroll-loops -falign-loops=16 -ffast-math";
OTHER_CFLAGS = (
"$(inherited)",
"$(OPTIMIZATION_CFLAGS)",
);
PRODUCT_NAME = "$(TARGET_NAME)";
SECTORDER_FLAGS = "";
WRAPPER_EXTENSION = psxplugin;
};
name = Release;
};
717084320FDFD328004F3EB4 /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 55858D4F178656240068B8FC /* Pcsxr-Debug.xcconfig */;
buildSettings = {
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
HEADER_SEARCH_PATHS = (
../../../plugins/dfxvideo,
../../../libpcsxcore,
);
};
name = Debug;
};
717084330FDFD328004F3EB4 /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 55858D51178656240068B8FC /* Pcsxr-Release.xcconfig */;
buildSettings = {
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
HEADER_SEARCH_PATHS = (
../../../plugins/dfxvideo,
../../../libpcsxcore,
);
};
name = Release;
};
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
7170842C0FDFD328004F3EB4 /* Build configuration list for PBXNativeTarget "gpuPeopsSoftGL" */ = {
isa = XCConfigurationList;
buildConfigurations = (
7170842D0FDFD328004F3EB4 /* Debug */,
7170842E0FDFD328004F3EB4 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
717084310FDFD328004F3EB4 /* Build configuration list for PBXProject "PeopsSoftGPU" */ = {
isa = XCConfigurationList;
buildConfigurations = (
717084320FDFD328004F3EB4 /* Debug */,
717084330FDFD328004F3EB4 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
rootObject = 2B3E5A03062AAC1A001D796E /* Project object */;
}

View File

@ -1,444 +0,0 @@
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {
/* Begin PBXBuildFile section */
28586CBE14651D960082B8EC /* NetSfPeopsOpenGLConfig.xib in Resources */ = {isa = PBXBuildFile; fileRef = 28586CBC14651D960082B8EC /* NetSfPeopsOpenGLConfig.xib */; };
28586CC014651E560082B8EC /* NetSfPeopsOpenGLGPUInterface.xib in Resources */ = {isa = PBXBuildFile; fileRef = 28586CBF14651E560082B8EC /* NetSfPeopsOpenGLGPUInterface.xib */; };
2B038C07069183300082466B /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 2B038C05069183300082466B /* InfoPlist.strings */; };
2B959E4406342D32000F2A2D /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2B959E4306342D32000F2A2D /* OpenGL.framework */; };
2BD2E769077AF53E00657C69 /* Credits.rtf in Resources */ = {isa = PBXBuildFile; fileRef = 2BD2E767077AF53E00657C69 /* Credits.rtf */; };
2BD7C777076E1FAB000F05ED /* GLUT.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2B51949E06B3D2D200744730 /* GLUT.framework */; };
3F31AF741302D4B600CBB551 /* drawgl.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F31AF6A1302D4B600CBB551 /* drawgl.m */; };
3F31AF761302D4B600CBB551 /* PluginGLView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F31AF6F1302D4B600CBB551 /* PluginGLView.m */; };
3F31AF771302D4B600CBB551 /* PluginWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F31AF711302D4B600CBB551 /* PluginWindow.m */; };
3F31AF781302D4B600CBB551 /* PluginWindowController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F31AF731302D4B600CBB551 /* PluginWindowController.m */; };
3F7F38041307999800556C34 /* NetSfPeopsOpenGLPluginConfigController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F7F38031307999800556C34 /* NetSfPeopsOpenGLPluginConfigController.m */; };
3F7F384813079BFD00556C34 /* texture.c in Sources */ = {isa = PBXBuildFile; fileRef = 3F7F383613079BFD00556C34 /* texture.c */; };
3F7F384913079BFD00556C34 /* menu.c in Sources */ = {isa = PBXBuildFile; fileRef = 3F7F383913079BFD00556C34 /* menu.c */; };
3F7F384A13079BFD00556C34 /* prim.c in Sources */ = {isa = PBXBuildFile; fileRef = 3F7F383B13079BFD00556C34 /* prim.c */; };
3F7F384B13079BFD00556C34 /* key.c in Sources */ = {isa = PBXBuildFile; fileRef = 3F7F383C13079BFD00556C34 /* key.c */; };
3F7F384C13079BFD00556C34 /* fps.c in Sources */ = {isa = PBXBuildFile; fileRef = 3F7F383D13079BFD00556C34 /* fps.c */; };
3F7F384E13079BFD00556C34 /* gpu.c in Sources */ = {isa = PBXBuildFile; fileRef = 3F7F384113079BFD00556C34 /* gpu.c */; };
3F7F384F13079BFD00556C34 /* soft.c in Sources */ = {isa = PBXBuildFile; fileRef = 3F7F384313079BFD00556C34 /* soft.c */; };
3F7F385013079BFD00556C34 /* draw.c in Sources */ = {isa = PBXBuildFile; fileRef = 3F7F384713079BFD00556C34 /* draw.c */; };
552E4CC91474742F00FB231F /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 552E4CCB1474742F00FB231F /* Localizable.strings */; };
A191B90713F6741300D0971F /* gte_accuracy.c in Sources */ = {isa = PBXBuildFile; fileRef = A191B90513F6741300D0971F /* gte_accuracy.c */; };
/* End PBXBuildFile section */
/* Begin PBXFileReference section */
28586CBD14651D960082B8EC /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = plugins/PeopsXgl/English.lproj/NetSfPeopsOpenGLConfig.xib; sourceTree = "<group>"; };
28586CBF14651E560082B8EC /* NetSfPeopsOpenGLGPUInterface.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NetSfPeopsOpenGLGPUInterface.xib; sourceTree = "<group>"; };
2B038C06069183300082466B /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = "<group>"; };
2B038D2206918AA80082466B /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
2B51949E06B3D2D200744730 /* GLUT.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GLUT.framework; path = /System/Library/Frameworks/GLUT.framework; sourceTree = "<absolute>"; };
2B959E4306342D32000F2A2D /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGL.framework; path = /System/Library/Frameworks/OpenGL.framework; sourceTree = "<absolute>"; };
2BAF50930632BB1A00DB9A16 /* gpuPeopsXGL.psxplugin */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = gpuPeopsXGL.psxplugin; sourceTree = BUILT_PRODUCTS_DIR; };
2BD2E768077AF53E00657C69 /* English */ = {isa = PBXFileReference; lastKnownFileType = text.rtf; name = English; path = English.lproj/Credits.rtf; sourceTree = "<group>"; };
3F31AF6A1302D4B600CBB551 /* drawgl.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; name = drawgl.m; path = macsrc/drawgl.m; sourceTree = SOURCE_ROOT; };
3F31AF6E1302D4B600CBB551 /* PluginGLView.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = PluginGLView.h; path = macsrc/PluginGLView.h; sourceTree = SOURCE_ROOT; };
3F31AF6F1302D4B600CBB551 /* PluginGLView.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; name = PluginGLView.m; path = macsrc/PluginGLView.m; sourceTree = SOURCE_ROOT; };
3F31AF701302D4B600CBB551 /* PluginWindow.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = PluginWindow.h; path = macsrc/PluginWindow.h; sourceTree = SOURCE_ROOT; };
3F31AF711302D4B600CBB551 /* PluginWindow.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PluginWindow.m; path = macsrc/PluginWindow.m; sourceTree = SOURCE_ROOT; };
3F31AF721302D4B600CBB551 /* PluginWindowController.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = PluginWindowController.h; path = macsrc/PluginWindowController.h; sourceTree = SOURCE_ROOT; };
3F31AF731302D4B600CBB551 /* PluginWindowController.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; name = PluginWindowController.m; path = macsrc/PluginWindowController.m; sourceTree = SOURCE_ROOT; };
3F7F38021307999800556C34 /* NetSfPeopsOpenGLPluginConfigController.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = NetSfPeopsOpenGLPluginConfigController.h; path = macsrc/NetSfPeopsOpenGLPluginConfigController.h; sourceTree = SOURCE_ROOT; };
3F7F38031307999800556C34 /* NetSfPeopsOpenGLPluginConfigController.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; name = NetSfPeopsOpenGLPluginConfigController.m; path = macsrc/NetSfPeopsOpenGLPluginConfigController.m; sourceTree = SOURCE_ROOT; };
3F7F383313079BFD00556C34 /* stdafx.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; lineEnding = 2; name = stdafx.h; path = ../../../plugins/peopsxgl/stdafx.h; sourceTree = SOURCE_ROOT; };
3F7F383513079BFD00556C34 /* texture.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = texture.h; path = ../../../plugins/peopsxgl/texture.h; sourceTree = SOURCE_ROOT; };
3F7F383613079BFD00556C34 /* texture.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; lineEnding = 2; name = texture.c; path = ../../../plugins/peopsxgl/texture.c; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.c; };
3F7F383713079BFD00556C34 /* key.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = key.h; path = ../../../plugins/peopsxgl/key.h; sourceTree = SOURCE_ROOT; };
3F7F383813079BFD00556C34 /* menu.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = menu.h; path = ../../../plugins/peopsxgl/menu.h; sourceTree = SOURCE_ROOT; };
3F7F383913079BFD00556C34 /* menu.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; lineEnding = 2; name = menu.c; path = ../../../plugins/peopsxgl/menu.c; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.c; };
3F7F383A13079BFD00556C34 /* gpu.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = gpu.h; path = ../../../plugins/peopsxgl/gpu.h; sourceTree = SOURCE_ROOT; };
3F7F383B13079BFD00556C34 /* prim.c */ = {isa = PBXFileReference; fileEncoding = 5; lastKnownFileType = sourcecode.c.c; name = prim.c; path = ../../../plugins/peopsxgl/prim.c; sourceTree = SOURCE_ROOT; };
3F7F383C13079BFD00556C34 /* key.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; lineEnding = 2; name = key.c; path = ../../../plugins/peopsxgl/key.c; sourceTree = SOURCE_ROOT; };
3F7F383D13079BFD00556C34 /* fps.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; lineEnding = 2; name = fps.c; path = ../../../plugins/peopsxgl/fps.c; sourceTree = SOURCE_ROOT; };
3F7F383F13079BFD00556C34 /* gl_ext.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = gl_ext.h; path = ../../../plugins/peopsxgl/gl_ext.h; sourceTree = SOURCE_ROOT; };
3F7F384013079BFD00556C34 /* fps.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = fps.h; path = ../../../plugins/peopsxgl/fps.h; sourceTree = SOURCE_ROOT; };
3F7F384113079BFD00556C34 /* gpu.c */ = {isa = PBXFileReference; fileEncoding = 5; lastKnownFileType = sourcecode.c.c; lineEnding = 2; name = gpu.c; path = ../../../plugins/peopsxgl/gpu.c; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.c; };
3F7F384213079BFD00556C34 /* soft.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = soft.h; path = ../../../plugins/peopsxgl/soft.h; sourceTree = SOURCE_ROOT; };
3F7F384313079BFD00556C34 /* soft.c */ = {isa = PBXFileReference; fileEncoding = 5; lastKnownFileType = sourcecode.c.c; name = soft.c; path = ../../../plugins/peopsxgl/soft.c; sourceTree = SOURCE_ROOT; };
3F7F384413079BFD00556C34 /* prim.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = prim.h; path = ../../../plugins/peopsxgl/prim.h; sourceTree = SOURCE_ROOT; };
3F7F384513079BFD00556C34 /* externals.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; lineEnding = 2; name = externals.h; path = ../../../plugins/peopsxgl/externals.h; sourceTree = SOURCE_ROOT; };
3F7F384613079BFD00556C34 /* draw.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = draw.h; path = ../../../plugins/peopsxgl/draw.h; sourceTree = SOURCE_ROOT; };
3F7F384713079BFD00556C34 /* draw.c */ = {isa = PBXFileReference; fileEncoding = 5; lastKnownFileType = sourcecode.c.c; lineEnding = 2; name = draw.c; path = ../../../plugins/peopsxgl/draw.c; sourceTree = SOURCE_ROOT; };
552E4CCA1474742F00FB231F /* English */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/Localizable.strings; sourceTree = "<group>"; };
55858D60178657F70068B8FC /* Pcsxr-Debug.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Pcsxr-Debug.xcconfig"; sourceTree = "<group>"; };
55858D61178657F70068B8FC /* Pcsxr-Instrument.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Pcsxr-Instrument.xcconfig"; sourceTree = "<group>"; };
55858D62178657F70068B8FC /* Pcsxr-Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Pcsxr-Release.xcconfig"; sourceTree = "<group>"; };
55858D63178657F70068B8FC /* Pcsxr.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Pcsxr.xcconfig; sourceTree = "<group>"; };
558600711785139200CB3D85 /* ARCBridge.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ARCBridge.h; sourceTree = "<group>"; };
55D42F10168D9AAE0027EBF0 /* ExtendedKeys.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ExtendedKeys.h; path = macsrc/ExtendedKeys.h; sourceTree = "<group>"; };
55F36E4A146C9F9900718DE6 /* drawgl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = drawgl.h; path = macsrc/drawgl.h; sourceTree = "<group>"; };
A191B90513F6741300D0971F /* gte_accuracy.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = gte_accuracy.c; path = ../../../plugins/peopsxgl/gte_accuracy.c; sourceTree = SOURCE_ROOT; };
A191B90613F6741300D0971F /* gte_accuracy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = gte_accuracy.h; path = ../../../plugins/peopsxgl/gte_accuracy.h; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
2BAF50910632BB1A00DB9A16 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
2B959E4406342D32000F2A2D /* OpenGL.framework in Frameworks */,
2BD7C777076E1FAB000F05ED /* GLUT.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
2B3E59FF062AAC1A001D796E = {
isa = PBXGroup;
children = (
71E9EBF0109F24B600E98D1D /* src */,
2BD2E2F40779F50B00657C69 /* macsrc */,
2BD2E818077AFB9F00657C69 /* Resources */,
2B038D2206918AA80082466B /* Info.plist */,
2B3E5A0B062AAC34001D796E /* Frameworks */,
2B3E5A46062AACF3001D796E /* Products */,
);
sourceTree = "<group>";
};
2B3E5A0B062AAC34001D796E /* Frameworks */ = {
isa = PBXGroup;
children = (
2B959E4306342D32000F2A2D /* OpenGL.framework */,
2B51949E06B3D2D200744730 /* GLUT.framework */,
);
name = Frameworks;
sourceTree = "<group>";
};
2B3E5A46062AACF3001D796E /* Products */ = {
isa = PBXGroup;
children = (
2BAF50930632BB1A00DB9A16 /* gpuPeopsXGL.psxplugin */,
);
name = Products;
sourceTree = "<group>";
};
2BD2E2F40779F50B00657C69 /* macsrc */ = {
isa = PBXGroup;
children = (
558600711785139200CB3D85 /* ARCBridge.h */,
55D42F10168D9AAE0027EBF0 /* ExtendedKeys.h */,
3F7F38021307999800556C34 /* NetSfPeopsOpenGLPluginConfigController.h */,
3F7F38031307999800556C34 /* NetSfPeopsOpenGLPluginConfigController.m */,
55F36E4A146C9F9900718DE6 /* drawgl.h */,
3F31AF6A1302D4B600CBB551 /* drawgl.m */,
3F31AF6E1302D4B600CBB551 /* PluginGLView.h */,
3F31AF6F1302D4B600CBB551 /* PluginGLView.m */,
3F31AF701302D4B600CBB551 /* PluginWindow.h */,
3F31AF711302D4B600CBB551 /* PluginWindow.m */,
3F31AF721302D4B600CBB551 /* PluginWindowController.h */,
3F31AF731302D4B600CBB551 /* PluginWindowController.m */,
);
name = macsrc;
sourceTree = "<group>";
};
2BD2E818077AFB9F00657C69 /* Resources */ = {
isa = PBXGroup;
children = (
55858D64178657F70068B8FC /* Configs */,
28586CBC14651D960082B8EC /* NetSfPeopsOpenGLConfig.xib */,
28586CBF14651E560082B8EC /* NetSfPeopsOpenGLGPUInterface.xib */,
2BD2E767077AF53E00657C69 /* Credits.rtf */,
2B038C05069183300082466B /* InfoPlist.strings */,
552E4CCB1474742F00FB231F /* Localizable.strings */,
);
name = Resources;
sourceTree = "<group>";
};
55858D64178657F70068B8FC /* Configs */ = {
isa = PBXGroup;
children = (
55858D60178657F70068B8FC /* Pcsxr-Debug.xcconfig */,
55858D61178657F70068B8FC /* Pcsxr-Instrument.xcconfig */,
55858D62178657F70068B8FC /* Pcsxr-Release.xcconfig */,
55858D63178657F70068B8FC /* Pcsxr.xcconfig */,
);
name = Configs;
path = ../../Configs;
sourceTree = "<group>";
};
71E9EBF0109F24B600E98D1D /* src */ = {
isa = PBXGroup;
children = (
A191B90513F6741300D0971F /* gte_accuracy.c */,
A191B90613F6741300D0971F /* gte_accuracy.h */,
3F7F383313079BFD00556C34 /* stdafx.h */,
3F7F383513079BFD00556C34 /* texture.h */,
3F7F383613079BFD00556C34 /* texture.c */,
3F7F383713079BFD00556C34 /* key.h */,
3F7F383813079BFD00556C34 /* menu.h */,
3F7F383913079BFD00556C34 /* menu.c */,
3F7F383A13079BFD00556C34 /* gpu.h */,
3F7F383B13079BFD00556C34 /* prim.c */,
3F7F383C13079BFD00556C34 /* key.c */,
3F7F383D13079BFD00556C34 /* fps.c */,
3F7F383F13079BFD00556C34 /* gl_ext.h */,
3F7F384013079BFD00556C34 /* fps.h */,
3F7F384113079BFD00556C34 /* gpu.c */,
3F7F384213079BFD00556C34 /* soft.h */,
3F7F384313079BFD00556C34 /* soft.c */,
3F7F384413079BFD00556C34 /* prim.h */,
3F7F384513079BFD00556C34 /* externals.h */,
3F7F384613079BFD00556C34 /* draw.h */,
3F7F384713079BFD00556C34 /* draw.c */,
);
name = src;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXNativeTarget section */
2BAF50920632BB1A00DB9A16 /* gpuPeopsXGL */ = {
isa = PBXNativeTarget;
buildConfigurationList = 7170842C0FDFD328004F3EB4 /* Build configuration list for PBXNativeTarget "gpuPeopsXGL" */;
buildPhases = (
2BAF508F0632BB1A00DB9A16 /* Resources */,
2BAF50900632BB1A00DB9A16 /* Sources */,
2BAF50910632BB1A00DB9A16 /* Frameworks */,
);
buildRules = (
);
dependencies = (
);
name = gpuPeopsXGL;
productName = gpuPeopsSoftGL;
productReference = 2BAF50930632BB1A00DB9A16 /* gpuPeopsXGL.psxplugin */;
productType = "com.apple.product-type.bundle";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
2B3E5A03062AAC1A001D796E /* Project object */ = {
isa = PBXProject;
attributes = {
LastUpgradeCheck = 0460;
};
buildConfigurationList = 717084310FDFD328004F3EB4 /* Build configuration list for PBXProject "PeopsXGL" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = English;
hasScannedForEncodings = 1;
knownRegions = (
English,
Japanese,
French,
German,
);
mainGroup = 2B3E59FF062AAC1A001D796E;
productRefGroup = 2B3E5A46062AACF3001D796E /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
2BAF50920632BB1A00DB9A16 /* gpuPeopsXGL */,
);
};
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
2BAF508F0632BB1A00DB9A16 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
2B038C07069183300082466B /* InfoPlist.strings in Resources */,
2BD2E769077AF53E00657C69 /* Credits.rtf in Resources */,
28586CBE14651D960082B8EC /* NetSfPeopsOpenGLConfig.xib in Resources */,
28586CC014651E560082B8EC /* NetSfPeopsOpenGLGPUInterface.xib in Resources */,
552E4CC91474742F00FB231F /* Localizable.strings in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
2BAF50900632BB1A00DB9A16 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
3F31AF741302D4B600CBB551 /* drawgl.m in Sources */,
3F31AF761302D4B600CBB551 /* PluginGLView.m in Sources */,
3F31AF771302D4B600CBB551 /* PluginWindow.m in Sources */,
3F31AF781302D4B600CBB551 /* PluginWindowController.m in Sources */,
3F7F38041307999800556C34 /* NetSfPeopsOpenGLPluginConfigController.m in Sources */,
3F7F384813079BFD00556C34 /* texture.c in Sources */,
3F7F384913079BFD00556C34 /* menu.c in Sources */,
3F7F384A13079BFD00556C34 /* prim.c in Sources */,
3F7F384B13079BFD00556C34 /* key.c in Sources */,
3F7F384C13079BFD00556C34 /* fps.c in Sources */,
3F7F384E13079BFD00556C34 /* gpu.c in Sources */,
3F7F384F13079BFD00556C34 /* soft.c in Sources */,
3F7F385013079BFD00556C34 /* draw.c in Sources */,
A191B90713F6741300D0971F /* gte_accuracy.c in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXVariantGroup section */
28586CBC14651D960082B8EC /* NetSfPeopsOpenGLConfig.xib */ = {
isa = PBXVariantGroup;
children = (
28586CBD14651D960082B8EC /* English */,
);
name = NetSfPeopsOpenGLConfig.xib;
path = ../..;
sourceTree = "<group>";
};
2B038C05069183300082466B /* InfoPlist.strings */ = {
isa = PBXVariantGroup;
children = (
2B038C06069183300082466B /* English */,
);
name = InfoPlist.strings;
sourceTree = "<group>";
};
2BD2E767077AF53E00657C69 /* Credits.rtf */ = {
isa = PBXVariantGroup;
children = (
2BD2E768077AF53E00657C69 /* English */,
);
name = Credits.rtf;
sourceTree = "<group>";
};
552E4CCB1474742F00FB231F /* Localizable.strings */ = {
isa = PBXVariantGroup;
children = (
552E4CCA1474742F00FB231F /* English */,
);
name = Localizable.strings;
sourceTree = "<group>";
};
/* End PBXVariantGroup section */
/* Begin XCBuildConfiguration section */
7170842D0FDFD328004F3EB4 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
GCC_DYNAMIC_NO_PIC = NO;
GCC_PRECOMPILE_PREFIX_HEADER = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PCSXRPLUG=PeopsXGL",
_MACGL,
_DARWIN,
"$(inherited)",
);
GCC_WARN_FOUR_CHARACTER_CONSTANTS = NO;
GCC_WARN_UNKNOWN_PRAGMAS = NO;
INFOPLIST_FILE = Info.plist;
INSTALL_PATH = "$(USER_LIBRARY_DIR)/Playstation Emulator Plugins";
OPTIMIZATION_CFLAGS = "-finline-functions -finline-limit=1600 -fno-exceptions -funroll-loops -falign-loops=16 -ffast-math";
OTHER_CFLAGS = "-finline-functions";
OTHER_LDFLAGS = (
"-framework",
Foundation,
"-framework",
AppKit,
);
PRODUCT_NAME = "$(TARGET_NAME)";
SECTORDER_FLAGS = "";
WRAPPER_EXTENSION = psxplugin;
};
name = Debug;
};
7170842E0FDFD328004F3EB4 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
GCC_DYNAMIC_NO_PIC = NO;
GCC_PRECOMPILE_PREFIX_HEADER = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PCSXRPLUG=PeopsXGL",
_MACGL,
_DARWIN,
"$(inherited)",
);
GCC_WARN_FOUR_CHARACTER_CONSTANTS = NO;
GCC_WARN_UNKNOWN_PRAGMAS = NO;
INFOPLIST_FILE = Info.plist;
INSTALL_PATH = "$(USER_LIBRARY_DIR)/Playstation Emulator Plugins";
OPTIMIZATION_CFLAGS = "-finline-functions -finline-limit=1600 -fomit-frame-pointer -fno-exceptions -funroll-loops -falign-loops=16 -ffast-math";
OTHER_LDFLAGS = (
"-framework",
Foundation,
"-framework",
AppKit,
);
PRODUCT_NAME = "$(TARGET_NAME)";
SECTORDER_FLAGS = "";
WRAPPER_EXTENSION = psxplugin;
};
name = Release;
};
717084320FDFD328004F3EB4 /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 55858D60178657F70068B8FC /* Pcsxr-Debug.xcconfig */;
buildSettings = {
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
GCC_WARN_ABOUT_POINTER_SIGNEDNESS = NO;
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
HEADER_SEARCH_PATHS = (
../../../plugins/peopsxgl,
../../../libpcsxcore,
);
WARNING_CFLAGS = "-Wall";
};
name = Debug;
};
717084330FDFD328004F3EB4 /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 55858D62178657F70068B8FC /* Pcsxr-Release.xcconfig */;
buildSettings = {
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
GCC_ENABLE_SSE3_EXTENSIONS = YES;
GCC_OPTIMIZATION_LEVEL = 3;
GCC_WARN_ABOUT_POINTER_SIGNEDNESS = NO;
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
HEADER_SEARCH_PATHS = (
../../../plugins/peopsxgl,
../../../libpcsxcore,
);
OTHER_CFLAGS = "-fomit-frame-pointer";
WARNING_CFLAGS = "-Wall";
};
name = Release;
};
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
7170842C0FDFD328004F3EB4 /* Build configuration list for PBXNativeTarget "gpuPeopsXGL" */ = {
isa = XCConfigurationList;
buildConfigurations = (
7170842D0FDFD328004F3EB4 /* Debug */,
7170842E0FDFD328004F3EB4 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
717084310FDFD328004F3EB4 /* Build configuration list for PBXProject "PeopsXGL" */ = {
isa = XCConfigurationList;
buildConfigurations = (
717084320FDFD328004F3EB4 /* Debug */,
717084330FDFD328004F3EB4 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
rootObject = 2B3E5A03062AAC1A001D796E /* Project object */;
}