mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-02-21 19:01:18 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@16580 72102866-910b-0410-8b05-ffd578937521
86 lines
1.8 KiB
Objective-C
86 lines
1.8 KiB
Objective-C
/*
|
|
* PCMakefileFactory.h created by probert on 2002-02-28 22:16:26 +0000
|
|
*
|
|
* Project ProjectCenter
|
|
*
|
|
* Created with ProjectCenter - http://www.gnustep.org
|
|
*
|
|
* $Id$
|
|
*/
|
|
|
|
#ifndef _PCMAKEFILEFACTORY_H_
|
|
#define _PCMAKEFILEFACTORY_H_
|
|
|
|
#include <Foundation/Foundation.h>
|
|
|
|
@interface PCMakefileFactory : NSObject
|
|
{
|
|
NSMutableString *mfile;
|
|
NSString *pnme;
|
|
}
|
|
|
|
+ (PCMakefileFactory *)sharedFactory;
|
|
|
|
- (void)createMakefileForProject:(NSString *)prName;
|
|
|
|
- (void)appendString:(NSString *)aString;
|
|
|
|
- (void)appendHeaders:(NSArray *)array;
|
|
- (void)appendClasses:(NSArray *)array;
|
|
- (void)appendOtherSources:(NSArray *)array;
|
|
|
|
- (void)appendInstallDir:(NSString*)dir;
|
|
|
|
- (void)appendResources;
|
|
- (void)appendResourceItems:(NSArray *)array;
|
|
|
|
- (void)appendSubprojects:(NSArray*)array;
|
|
|
|
- (void)appendTailForApp;
|
|
- (void)appendTailForLibrary;
|
|
- (void)appendTailForTool;
|
|
- (void)appendTailForBundle;
|
|
- (void)appendTailForGormApp;
|
|
|
|
- (NSData *)encodedMakefile;
|
|
|
|
@end
|
|
|
|
@interface PCMakefileFactory (ApplicationProject)
|
|
|
|
- (void)appendApplication;
|
|
- (void)appendAppIcon:(NSString*)icn;
|
|
- (void)appendGuiLibraries:(NSArray*)array;
|
|
|
|
@end
|
|
|
|
@interface PCMakefileFactory (BundleProject)
|
|
|
|
- (void)appendBundle;
|
|
- (void)appendPrincipalClass:(NSString *)cname;
|
|
- (void)appendBundleInstallDir:(NSString*)dir;
|
|
- (void)appendLibraries:(NSArray*)array;
|
|
|
|
@end
|
|
|
|
@interface PCMakefileFactory (LibraryProject)
|
|
|
|
- (void)appendLibrary;
|
|
- (void)appendLibraryInstallDir:(NSString*)dir;
|
|
- (void)appendLibraryLibraries:(NSArray*)array;
|
|
- (void)appendLibraryHeaders:(NSArray*)array;
|
|
- (void)appendLibraryClasses:(NSArray *)array;
|
|
- (void)appendLibraryOtherSources:(NSArray *)array;
|
|
|
|
@end
|
|
|
|
@interface PCMakefileFactory (ToolProject)
|
|
|
|
- (void)appendTool;
|
|
- (void)appendToolIcon:(NSString*)icn;
|
|
- (void)appendToolLibraries:(NSArray*)array;
|
|
|
|
@end
|
|
|
|
#endif // _PCMAKEFILEFACTORY_H_
|
|
|