diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2004-09-22 18:42:05 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2004-09-22 18:42:05 (GMT) |
commit | 692ba48c4e5762b370f2999e902b8bd677c77161 (patch) | |
tree | 0c9465d0e38a15bd0cb043f234b4e4ab0cee51a2 /Source/cmLocalUnixMakefileGenerator.h | |
parent | 597185754420db18d83b2c9e3b9f1e33675bd935 (diff) | |
download | CMake-692ba48c4e5762b370f2999e902b8bd677c77161.zip CMake-692ba48c4e5762b370f2999e902b8bd677c77161.tar.gz CMake-692ba48c4e5762b370f2999e902b8bd677c77161.tar.bz2 |
ENH: major changes to support addition of languages from cmake modules directory.
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator.h')
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator.h b/Source/cmLocalUnixMakefileGenerator.h index 756190d..832afd6 100644 --- a/Source/cmLocalUnixMakefileGenerator.h +++ b/Source/cmLocalUnixMakefileGenerator.h @@ -88,6 +88,7 @@ public: void SetPassMakeflags(bool s){m_PassMakeflags = s;} protected: + void AddDependenciesToSourceFile(cmDependInformation const*info, cmSourceFile *i, std::set<cmDependInformation const*> *visited); @@ -198,7 +199,6 @@ protected: ///! return true if the two paths are the same virtual bool SamePath(const char* path1, const char* path2); - virtual std::string GetOutputExtension(const char* sourceExtension); std::string CreatePreBuildRules(const cmTarget &target, const char* targetName); std::string CreatePreLinkRules(const cmTarget &target, @@ -239,12 +239,13 @@ protected: */ std::string& CreateSafeUniqueObjectFileName(const char* sin); - ///! final processing for a path to be put in a makefile + cmStdString& GetIncludeFlags(const char* lang); protected: int m_MakefileVariableSize; std::map<cmStdString, cmStdString> m_MakeVariableMap; std::map<cmStdString, cmStdString> m_ShortMakeVariableMap; std::map<cmStdString, cmStdString> m_UniqueObjectNamesMap; + std::map<cmStdString, cmStdString> m_LanguageToIncludeFlags; bool m_IgnoreLibPrefix; std::string m_IncludeDirective; std::string m_MakeSilentFlag; |