summaryrefslogtreecommitdiff
path: root/Source/cmMakefileLibraryTargetGenerator.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2008-02-18 16:38:34 -0500
committerBrad King <brad.king@kitware.com>2008-02-18 16:38:34 -0500
commit9ed42663068bc8f5bc2510a2fb19b574c06f3a1f (patch)
tree46768f04a5bc810e9b5abc1011b8ddd7a6bcbd95 /Source/cmMakefileLibraryTargetGenerator.h
parenta3781c85fcaee3f49b95e101317a19594f575c98 (diff)
downloadcmake-9ed42663068bc8f5bc2510a2fb19b574c06f3a1f.tar.gz
ENH: Cleanup impl of PUBLIC_HEADER, PRIVATE_HEADER, and RESOURCE properties
Diffstat (limited to 'Source/cmMakefileLibraryTargetGenerator.h')
-rw-r--r--Source/cmMakefileLibraryTargetGenerator.h13
1 files changed, 4 insertions, 9 deletions
diff --git a/Source/cmMakefileLibraryTargetGenerator.h b/Source/cmMakefileLibraryTargetGenerator.h
index 22741af832..a1a4bf79da 100644
--- a/Source/cmMakefileLibraryTargetGenerator.h
+++ b/Source/cmMakefileLibraryTargetGenerator.h
@@ -23,7 +23,7 @@ class cmMakefileLibraryTargetGenerator:
public cmMakefileTargetGenerator
{
public:
- cmMakefileLibraryTargetGenerator();
+ cmMakefileLibraryTargetGenerator(cmTarget* target);
/* the main entry point for this class. Writes the Makefiles associated
with this target */
@@ -39,14 +39,9 @@ protected:
void WriteFrameworkRules(bool relink);
void CreateFramework(std::string& targetName,
std::string& outpath);
- void CreateFrameworkLinksAndDirs(std::string& targetName,
- std::string& outpath,
- const char* version);
- void CopyFrameworkSources(std::string& targetName,
- std::string& outpath,
- const char* version,
- const char* propertyName,
- const char* subdir);
+
+ // Store the computd framework version for OS X Frameworks.
+ std::string FrameworkVersion;
};
#endif