-
Notifications
You must be signed in to change notification settings - Fork 133
/
Copy pathXCProject+SubProject.h
43 lines (26 loc) · 1.36 KB
/
XCProject+SubProject.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
////////////////////////////////////////////////////////////////////////////////
//
// JASPER BLUES
// Copyright 2012 Jasper Blues
// All Rights Reserved.
//
// NOTICE: Jasper Blues permits you to use, modify, and distribute this file
// in accordance with the terms of the license agreement accompanying it.
//
////////////////////////////////////////////////////////////////////////////////
#import <Foundation/Foundation.h>
#import <XcodeEditor/XCProject.h>
@interface XCProject (SubProject)
- (NSString *)referenceProxyKeyForName:(NSString *)name;
- (NSArray<XCSourceFile*> *)buildProductsForTargets:(NSString *)xcodeprojKey;
- (void)addAsTargetDependency:(XCSubProjectDefinition *)xcodeprojDefinition toTargets:(NSArray<XCTarget*>*)targets;
- (NSArray<NSString*> *)keysForProjectObjectsOfType:(XcodeMemberType)memberType withIdentifier:(NSString *)identifier
singleton:(BOOL)singleton required:(BOOL)required;
- (NSMutableDictionary *)PBXProjectDict;
- (void)removeProxies:(NSString *)xcodeprojKey;
- (void)addProxies:(XCSubProjectDefinition *)xcodeproj;
- (void)removeFromProjectReferences:(NSString *)key forProductsGroup:(NSString *)productsGroupKey;
- (void)removeTargetDependencies:(NSString *)name;
- (NSString *)containerItemProxyKeyForName:(NSString *)name proxyType:(NSString *)proxyType;
- (NSString *)productsGroupKeyForKey:(NSString *)key;
@end