mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-02-22 03:11:18 +00:00
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:
parent
d76f33661b
commit
b94043090b
3 changed files with 7 additions and 3 deletions
|
@ -138,9 +138,6 @@ static PCAppProj *_creator = nil;
|
||||||
[fm createDirectoryAtPath:[path stringByAppendingPathComponent:@"Images"] attributes:nil];
|
[fm createDirectoryAtPath:[path stringByAppendingPathComponent:@"Images"] attributes:nil];
|
||||||
[fm createDirectoryAtPath:[path stringByAppendingPathComponent:@"Documentation"] 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!
|
// The path cannot be in the PC.project file!
|
||||||
[project setProjectPath:path];
|
[project setProjectPath:path];
|
||||||
|
|
||||||
|
|
|
@ -66,4 +66,6 @@
|
||||||
- (NSArray *)buildTargets;
|
- (NSArray *)buildTargets;
|
||||||
- (NSString *)projectDescription;
|
- (NSString *)projectDescription;
|
||||||
|
|
||||||
|
- (BOOL)isExecutable;
|
||||||
|
|
||||||
@end
|
@end
|
||||||
|
|
|
@ -200,4 +200,9 @@
|
||||||
return @"Project that handles GNUstep/ObjC based applications.";
|
return @"Project that handles GNUstep/ObjC based applications.";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
- (BOOL)isExecutable
|
||||||
|
{
|
||||||
|
return YES;
|
||||||
|
}
|
||||||
|
|
||||||
@end
|
@end
|
||||||
|
|
Loading…
Reference in a new issue