diff options
author | Brad King <brad.king@kitware.com> | 2008-02-18 21:38:34 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2008-02-18 21:38:34 (GMT) |
commit | 9ed42663068bc8f5bc2510a2fb19b574c06f3a1f (patch) | |
tree | 46768f04a5bc810e9b5abc1011b8ddd7a6bcbd95 /Source/cmMakefileLibraryTargetGenerator.h | |
parent | a3781c85fcaee3f49b95e101317a19594f575c98 (diff) | |
download | CMake-9ed42663068bc8f5bc2510a2fb19b574c06f3a1f.zip CMake-9ed42663068bc8f5bc2510a2fb19b574c06f3a1f.tar.gz CMake-9ed42663068bc8f5bc2510a2fb19b574c06f3a1f.tar.bz2 |
ENH: Cleanup impl of PUBLIC_HEADER, PRIVATE_HEADER, and RESOURCE properties
Diffstat (limited to 'Source/cmMakefileLibraryTargetGenerator.h')
-rw-r--r-- | Source/cmMakefileLibraryTargetGenerator.h | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/Source/cmMakefileLibraryTargetGenerator.h b/Source/cmMakefileLibraryTargetGenerator.h index 22741af..a1a4bf7 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 |