diff options
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 |