diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2001-12-07 15:58:06 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2001-12-07 15:58:06 (GMT) |
commit | 30a56de4b7355d3fa69545af9571105b8cae8eb9 (patch) | |
tree | 503f00ad99e6bc1a14e83c756de0c14b13d5d620 /Source/cmUnixMakefileGenerator.h | |
parent | 728d20302ee99b57bd19b2bd9501500907993913 (diff) | |
download | CMake-30a56de4b7355d3fa69545af9571105b8cae8eb9.zip CMake-30a56de4b7355d3fa69545af9571105b8cae8eb9.tar.gz CMake-30a56de4b7355d3fa69545af9571105b8cae8eb9.tar.bz2 |
ENH: add custom commands for targets
Diffstat (limited to 'Source/cmUnixMakefileGenerator.h')
-rw-r--r-- | Source/cmUnixMakefileGenerator.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmUnixMakefileGenerator.h b/Source/cmUnixMakefileGenerator.h index b1145f4..b5a3901 100644 --- a/Source/cmUnixMakefileGenerator.h +++ b/Source/cmUnixMakefileGenerator.h @@ -165,6 +165,8 @@ protected: void SetSharedLibraryExtension(const char* e) {m_SharedLibraryExtension = e;} void SetLibraryPrefix(const char* e) { m_LibraryPrefix = e;} virtual std::string ConvertToNativePath(const char* s) { return s; } + std::string cmUnixMakefileGenerator::CreateTargetRules(const cmTarget &target, + const char* targetName); protected: std::string m_ExecutableOutputPath; std::string m_LibraryOutputPath; |