Skip to content

Commit

Permalink
Add skeleton methods
Browse files Browse the repository at this point in the history
  • Loading branch information
gcasa committed Sep 12, 2024
1 parent 18f939d commit 05df851
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions Tools/pc2xc/main.m
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@
*/

#import <Foundation/Foundation.h>

#import <XCode/PBXCoder.h>
#import <XCode/PBXContainer.h>
#import <XCode/PBXProject.h>

PBXContainer *convertPBProject(NSDictionary *proj)
{
Expand All @@ -24,6 +26,12 @@
return nil;
}

BOOL buildXCodeProj(PBXContainer *container, NSString *output)
{

return YES;
}

int main(int argc, const char *argv[])
{
id pool = [[NSAutoreleasePool alloc] init];
Expand Down Expand Up @@ -62,6 +70,11 @@ int main(int argc, const char *argv[])
}
else
{
BOOL result = buildXCodeProj(container, output);
if (result == NO)
{
return 255;
}
}
}
else
Expand Down

0 comments on commit 05df851

Please sign in to comment.