The project type is executable

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@8024 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Robert Slover 2000-11-04 12:41:29 +00:00
parent b94043090b
commit 2015c9c907
2 changed files with 7 additions and 0 deletions

View file

@ -63,5 +63,7 @@
- (NSArray *)buildTargets;
- (NSString *)projectDescription;
- (BOOL)isExecutable;
@end

View file

@ -139,4 +139,9 @@
return @"Project that handles GNUstep/ObjC based tools.";
}
- (BOOL)isExecutable
{
return YES;
}
@end