mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-02-23 11:51:08 +00:00
* Headers/ProjectCenter/PCProjectBuilderOptions.h: Add missing file. * Framework/PCProject.m: (-rootCategories): Call subproject's method if subproject is active. (-rootEntries): Ditto. (-keyForCategory:): Ditto. Fix bug #20854. (-categoryForKey:): Ditto. (-keyForRootCategoryInCategoryPath:): Since keyForCategory: was made subproject's sensitive implement key searching here. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@25407 72102866-910b-0410-8b05-ffd578937521
52 lines
No EOL
1.2 KiB
Text
52 lines
No EOL
1.2 KiB
Text
{
|
|
Type = "Project";
|
|
Name = "Application";
|
|
Description = "Project that handles GNUstep ObjC based applications.";
|
|
PrincipalClassName = "PCAppProject";
|
|
Executable = YES;
|
|
ExecToolName = "openapp";
|
|
BuildTargets = ("all","install","uninstall","clean","distclean","dist");
|
|
CanHavePublicHeaders = NO;
|
|
BrowserRootEntries = {
|
|
CLASS_FILES = "Classes";
|
|
HEADER_FILES = "Headers";
|
|
OTHER_SOURCES = "Other Sources";
|
|
INTERFACES = "Interfaces";
|
|
IMAGES = "Images";
|
|
OTHER_RESOURCES = "Other Resources";
|
|
SUBPROJECTS = "Subprojects";
|
|
DOCU_FILES = "Documentation";
|
|
SUPPORTING_FILES = "Supporting Files";
|
|
LIBRARIES = "Libraries";
|
|
NON_PROJECT_FILES = "Non Project Files";
|
|
};
|
|
SourceFileKeys = (
|
|
"CLASS_FILES",
|
|
"HEADER_FILES",
|
|
"OTHER_SOURCES"
|
|
);
|
|
ResourceFileKeys = (
|
|
"INTERFACES",
|
|
"IMAGES",
|
|
"DOCU_FILES",
|
|
"OTHER_RESOURCES"
|
|
);
|
|
OtherFileKeys = (
|
|
"LIBRARIES",
|
|
"NON_PROJECT_FILES"
|
|
);
|
|
AllowableSubprojectTypes = (
|
|
"Aggregate",
|
|
"Application",
|
|
"Bundle",
|
|
"Library",
|
|
"Framework",
|
|
"Tool"
|
|
);
|
|
LocalizableCategories = (
|
|
INTERFACES,
|
|
IMAGES,
|
|
OTHER_RESOURCES,
|
|
DOCU_FILES
|
|
);
|
|
} |