Skip to content

Commit

Permalink
Fixed pod build
Browse files Browse the repository at this point in the history
  • Loading branch information
lvsti committed Jan 21, 2018
1 parent 370595c commit 913fa44
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions Source/Include/XCBuildFile.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
//

#import <Foundation/Foundation.h>
#import "XcodeMemberType.h"

@protocol XCBuildFile <NSObject>

Expand Down
4 changes: 2 additions & 2 deletions Source/Include/XcodeEditor.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
//
////////////////////////////////////////////////////////////////////////////////

#import <Cocoa/Cocoa.h>
#import <Foundation/Foundation.h>

//! Project version number for XcodeEditor.
FOUNDATION_EXPORT double XcodeEditorVersionNumber;
Expand All @@ -36,4 +36,4 @@ FOUNDATION_EXPORT const unsigned char XcodeEditorVersionString[];
#import "XCProjectBuildConfig.h"
#import "XCBuildShellScript.h"
#import "XCBuildShellScriptDefinition.h"
#import "XCVersionGroup.h"
#import "XCVersionGroup.h"
2 changes: 1 addition & 1 deletion Source/Resources/XcodeEditor-Prefix.pch
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

#ifdef __OBJC__

#import <Cocoa/Cocoa.h>
#import <Foundation/Foundation.h>

#endif

Expand Down
2 changes: 1 addition & 1 deletion Source/XCProject.m
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ - (XCGroup *)groupWithPathFromRoot:(NSString *)path
for (NSString *pathItem in pathItems) {
id <XcodeGroupMember> group = [currentGroup memberWithDisplayName:pathItem];
if ([group isKindOfClass:[XCGroup class]]) {
currentGroup = group;
currentGroup = (XCGroup*)group;
} else {
return nil;
}
Expand Down
2 changes: 1 addition & 1 deletion XcodeEditor.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ Pod::Spec.new do |s|
s.source_files = 'Source/*.{h,m}', 'Source/Utils/*.{h,m}', 'Source/Include/*.{h,m}'
s.requires_arc = true
s.ios.deployment_target = '5.0'
s.osx.deployment_target = '10.7'
s.osx.deployment_target = '10.8'
end

0 comments on commit 913fa44

Please sign in to comment.