mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-03-19 00:51:51 +00:00
Add .dylib to ProjectCenter's list of known library extensions.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@30724 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
c546135d3e
commit
1c0d8df3db
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2010-06-15 Wolfgang Lux <wolfgang.lux@gmail.com>
|
||||
|
||||
* Framework/PCProject.m (-fileTypesForCategoryKey:): Add .dylib to
|
||||
the list of known library extensions.
|
||||
|
||||
2010-06-15 Wolfgang Lux <wolfgang.lux@gmail.com>
|
||||
|
||||
* Modules/Projects/Application/PCAppProject.m (-writeMakefile):
|
||||
|
|
|
@ -986,7 +986,7 @@ NSString
|
|||
}
|
||||
else if ([key isEqualToString:PCLibraries])
|
||||
{
|
||||
return [NSArray arrayWithObjects:@"so",@"a",@"lib",nil];
|
||||
return [NSArray arrayWithObjects:@"so",@"a",@"lib",@"dylib",nil];
|
||||
}
|
||||
|
||||
return nil;
|
||||
|
|
Loading…
Reference in a new issue