forked from keysight-eggplant/libs-xcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPBXNativeTarget.h
33 lines (29 loc) · 972 Bytes
/
PBXNativeTarget.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
#import <Foundation/Foundation.h>
// Local includes
#import "PBXCoder.h"
#import "XCConfigurationList.h"
#import "PBXFileReference.h"
#import "PBXAbstractTarget.h"
@interface PBXNativeTarget : PBXAbstractTarget
{
PBXFileReference *productReference;
NSString *productInstallPath;
NSString *productType;
NSMutableArray *buildRules;
NSString *comments;
NSString *productSettingsXML;
}
// Methods....
- (PBXFileReference *) productReference; // getter
- (void) setProductReference: (PBXFileReference *)object; // setter
- (NSString *) productInstallPath; // getter
- (void) setProductInstallPath: (NSString *)object; // setter
- (NSString *) productType; // getter
- (void) setProductType: (NSString *)object; // setter
- (NSMutableArray *) buildRules; // getter
- (void) setBuildRules: (NSMutableArray *)object; // setter
- (NSString *) productSettingsXML; // getter
- (void) setProductSettingsXML: (NSString *)object; // setter
// build
- (BOOL) build;
@end