mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-02-19 18:11:31 +00:00
Generate the PACKAGE_NAME for Frameworks
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@38404 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
b5e637be5f
commit
e60d0be099
2 changed files with 9 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2015-03-12 Riccardo Mottola <rm@gnu.org>
|
||||||
|
|
||||||
|
* Modules/Projects/Framework/PCFrameworkProject.m
|
||||||
|
Generate the PACKAGE_NAME for Frameworks.
|
||||||
|
|
||||||
2015-03-11 Riccardo Mottola <rm@gnu.org>
|
2015-03-11 Riccardo Mottola <rm@gnu.org>
|
||||||
|
|
||||||
* Modules/Preferences/EditorFSC/PCEditorFSCPrefs.m
|
* Modules/Preferences/EditorFSC/PCEditorFSCPrefs.m
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
/*
|
/*
|
||||||
GNUstep ProjectCenter - http://www.gnustep.org/experience/ProjectCenter.html
|
GNUstep ProjectCenter - http://www.gnustep.org/experience/ProjectCenter.html
|
||||||
|
|
||||||
Copyright (C) 2005-2013 Free Software Foundation
|
Copyright (C) 2005-2015 Free Software Foundation
|
||||||
|
|
||||||
Authors: Serg Stoyan
|
Authors: Serg Stoyan
|
||||||
|
Riccardo Mottola
|
||||||
|
|
||||||
This file is part of GNUstep.
|
This file is part of GNUstep.
|
||||||
|
|
||||||
|
@ -273,6 +274,8 @@
|
||||||
[mff appendString:@"\n#\n# Framework\n#\n"];
|
[mff appendString:@"\n#\n# Framework\n#\n"];
|
||||||
[mff appendString:[NSString stringWithFormat:@"VERSION = %@\n",
|
[mff appendString:[NSString stringWithFormat:@"VERSION = %@\n",
|
||||||
[projectDict objectForKey:PCRelease]]];
|
[projectDict objectForKey:PCRelease]]];
|
||||||
|
[mff appendString:
|
||||||
|
[NSString stringWithFormat:@"PACKAGE_NAME = %@\n", projectName]];
|
||||||
[mff appendString:[NSString stringWithFormat:@"FRAMEWORK_NAME = %@\n",
|
[mff appendString:[NSString stringWithFormat:@"FRAMEWORK_NAME = %@\n",
|
||||||
projectName]];
|
projectName]];
|
||||||
[mff appendString:[NSString
|
[mff appendString:[NSString
|
||||||
|
|
Loading…
Reference in a new issue