Skip to content

Commit 4be376f

Browse files
committed
Use gnumake as the build tool
1 parent 7c5fd17 commit 4be376f

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

Generators/ProjectBuilder/GSXCProjectBuilderGenerator.m

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -232,8 +232,10 @@ - (BOOL) generate
232232
[projectDict setObject: filesTable forKey: @"FILESTABLE"];
233233

234234
// Add ProjectBuilder-specific metadata
235-
[projectDict setObject: @"2.1" forKey: @"LANGUAGE"];
236-
[projectDict setObject: @"NeXT Project Builder Project v2.1" forKey: @"NEXTSTEP_BUILDTOOL"];
235+
[projectDict setObject: @"2.1"
236+
forKey: @"LANGUAGE"];
237+
[projectDict setObject: @"gnumake" /* @"NeXT Project Builder Project v2.1" */
238+
forKey: @"NEXTSTEP_BUILDTOOL"];
237239

238240
NSDebugLog(@"ProjectBuilder project dict = %@", projectDict);
239241

@@ -249,4 +251,4 @@ - (BOOL) generate
249251
return result;
250252
}
251253

252-
@end
254+
@end

0 commit comments

Comments
 (0)