Skip to content

Commit 9e610e3

Browse files
Check for 'Compiler' type in xcspec files
1 parent 31423ef commit 9e610e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

BuildSettingExtractor/BuildSettingInfoSource.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ - (NSDictionary *)xcspecFileBuildSettingInfoForPath:(NSString *)path {
185185
if ([spec isKindOfClass:[NSDictionary class]]) {
186186
NSDictionary *specDict = (NSDictionary *)spec;
187187
NSString *specType = specDict[@"Type"];
188-
if ([specType isEqualToString:@"BuildSystem"]) {
188+
if ([specType isEqualToString:@"BuildSystem"] || ([specType isEqualToString:@"Compiler"])) {
189189

190190
id options = specDict[@"Options"];
191191
if (!options) options = specDict[@"Properties"];

0 commit comments

Comments
 (0)