we do not use gmodels, and the project is executable

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

View file

@ -138,9 +138,6 @@ static PCAppProj *_creator = nil;
[fm createDirectoryAtPath:[path stringByAppendingPathComponent:@"Images"] attributes:nil];
[fm createDirectoryAtPath:[path stringByAppendingPathComponent:@"Documentation"] attributes:nil];
_file = [[NSBundle bundleForClass:[self class]] pathForResource:@"Main" ofType:@"gmodel"];
[fm copyPath:_file toPath:[_resourcePath stringByAppendingPathComponent:@"Main.gmodel"] handler:nil];
// The path cannot be in the PC.project file!
[project setProjectPath:path];

View file

@ -66,4 +66,6 @@
- (NSArray *)buildTargets;
- (NSString *)projectDescription;
- (BOOL)isExecutable;
@end

View file

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