Skip to content

Commit e15ca7a

Browse files
committed
Fix grabbing the resources
1 parent 339d6ab commit e15ca7a

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

XCode/PBXResourcesBuildPhase.m

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -386,6 +386,13 @@ - (BOOL) build
386386
return result;
387387
}
388388

389+
- (NSArray *) allFiles
390+
{
391+
NSArray *synchronizedFiles = [_target synchronizedResources];
392+
NSArray *files = [_files arrayByAddingObjectsFromArray: synchronizedFiles];
393+
return files;
394+
}
395+
389396
- (BOOL) generate
390397
{
391398
GSXCBuildContext *context = [GSXCBuildContext sharedBuildContext];

0 commit comments

Comments
 (0)