| 39 | | NSBundle *coreDataPlugin = [NSBundle bundleWithPath:@"/Library/Application Support/Apple/Developer Tools/Plug-ins/XDCoreDataModel.xdplugin"]; |
|---|
| | 39 | #define Xcode24_XDCoreDataModelPlugin @"/Library/Application Support/Apple/Developer Tools/Plug-ins/XDCoreDataModel.xdplugin" |
|---|
| | 40 | #define Xcode25_XDCoreDataModelPlugin @"/Xcode2.5/Library/Xcode/Plug-ins/XDCoreDataModel.xdplugin" |
|---|
| | 41 | |
|---|
| | 42 | NSBundle *coreDataPlugin = nil; |
|---|
| | 43 | if ([[NSFileManager defaultManager] fileExistsAtPath:Xcode25_XDCoreDataModelPlugin]) { |
|---|
| | 44 | coreDataPlugin = [NSBundle bundleWithPath:Xcode25_XDCoreDataModelPlugin]; |
|---|
| | 45 | } else { |
|---|
| | 46 | coreDataPlugin = [NSBundle bundleWithPath:Xcode24_XDCoreDataModelPlugin]; |
|---|
| | 47 | } |
|---|