summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefileLibraryTargetGenerator.h
diff options
context:
space:
mode:
authorDavid Cole <david.cole@kitware.com>2007-08-14 18:12:08 (GMT)
committerDavid Cole <david.cole@kitware.com>2007-08-14 18:12:08 (GMT)
commit0e96f06954724e31a30dc0d092553f5be3d41b00 (patch)
tree00ab9e6172ebe0b137b368977f3b7dc6a0f9987f /Source/cmMakefileLibraryTargetGenerator.h
parenta33e059e41abe4f018411046cf83865494402ede (diff)
downloadCMake-0e96f06954724e31a30dc0d092553f5be3d41b00.zip
CMake-0e96f06954724e31a30dc0d092553f5be3d41b00.tar.gz
CMake-0e96f06954724e31a30dc0d092553f5be3d41b00.tar.bz2
ENH: Improve framework support in the makefile generator to match the support just added to the Xcode generator. BUG: Remove spurious warning and eliminate empty Libraries subdir inside built framework.
Diffstat (limited to 'Source/cmMakefileLibraryTargetGenerator.h')
-rw-r--r--Source/cmMakefileLibraryTargetGenerator.h17
1 files changed, 8 insertions, 9 deletions
diff --git a/Source/cmMakefileLibraryTargetGenerator.h b/Source/cmMakefileLibraryTargetGenerator.h
index 1be2ebd..22741af 100644
--- a/Source/cmMakefileLibraryTargetGenerator.h
+++ b/Source/cmMakefileLibraryTargetGenerator.h
@@ -38,16 +38,15 @@ protected:
// MacOSX Framework support methods
void WriteFrameworkRules(bool relink);
void CreateFramework(std::string& targetName,
- std::string& outpath);
+ std::string& outpath);
void CreateFrameworkLinksAndDirs(std::string& targetName,
- std::string& outpath,
- const char* version);
- void CopyFrameworkPublicHeaders(std::string& targetName,
- std::string& outpath,
- const char* version);
- void CopyFrameworkResources(std::string& targetName,
- std::string& outpath,
- const char* version);
+ std::string& outpath,
+ const char* version);
+ void CopyFrameworkSources(std::string& targetName,
+ std::string& outpath,
+ const char* version,
+ const char* propertyName,
+ const char* subdir);
};
#endif