diff options
Diffstat (limited to 'Source/cmUnixMakefileGenerator.h')
-rw-r--r-- | Source/cmUnixMakefileGenerator.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Source/cmUnixMakefileGenerator.h b/Source/cmUnixMakefileGenerator.h index 14e6fc7..5a73de8 100644 --- a/Source/cmUnixMakefileGenerator.h +++ b/Source/cmUnixMakefileGenerator.h @@ -155,7 +155,12 @@ protected: void SetLibraryPrefix(const char* e) { m_LibraryPrefix = e;} virtual std::string ConvertToNativePath(const char* s) { return s; } std::string CreateTargetRules(const cmTarget &target, - const char* targetName); + const char* targetName); + virtual std::string CreateMakeVariable(const char* s, const char* s2) + { + return std::string(s) + std::string(s2); + } + protected: std::string m_ExecutableOutputPath; std::string m_LibraryOutputPath; |