forked from gnustep/libs-xcode
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathPBXAbstractTarget.h
More file actions
35 lines (30 loc) · 965 Bytes
/
PBXAbstractTarget.h
File metadata and controls
35 lines (30 loc) · 965 Bytes
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
#import <Foundation/Foundation.h>
// Local includes
#import "PBXCoder.h"
#import "XCConfigurationList.h"
#import "PBXFileReference.h"
#import "GSXCBuildContext.h"
@interface PBXAbstractTarget : NSObject
{
NSMutableArray *dependencies;
XCConfigurationList *buildConfigurationList;
NSString *productName;
NSMutableArray *buildPhases;
NSString *name;
}
// Methods....
- (NSMutableArray *) dependencies; // getter
- (void) setDependencies: (NSMutableArray *)object; // setter
- (XCConfigurationList *) buildConfigurationList; // getter
- (void) setBuildConfigurationList: (XCConfigurationList *)object; // setter
- (NSString *) productName; // getter
- (void) setProductName: (NSString *)object; // setter
- (NSMutableArray *) buildPhases; // getter
- (void) setBuildPhases: (NSMutableArray *)object; // setter
- (NSString *) name; // getter
- (void) setName: (NSString *)object; // setter
// build
- (BOOL) build;
- (BOOL) clean;
- (BOOL) install;
@end