diff options
Diffstat (limited to 'Source/cmNMakeMakefileGenerator.h')
-rw-r--r-- | Source/cmNMakeMakefileGenerator.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmNMakeMakefileGenerator.h b/Source/cmNMakeMakefileGenerator.h index e71abe9..30be86a 100644 --- a/Source/cmNMakeMakefileGenerator.h +++ b/Source/cmNMakeMakefileGenerator.h @@ -67,6 +67,8 @@ public: ///! figure out about the current system information virtual void ComputeSystemInfo(); protected: + std::string ShortPath(const char* path); + std::string ShortPathCommand(const char* command); virtual void OutputMakeVariables(std::ostream&); virtual void BuildInSubDirectory(std::ostream& fout, const char* directory, @@ -106,11 +108,13 @@ protected: const char* fullpath); ///! return true if the two paths are the same (checks short paths) virtual bool SamePath(const char* path1, const char* path2); + void SetLibraryPathOption(const char* lib){ m_LibraryPathOption = lib;} private: bool m_QuoteNextCommand; // if this is true, OutputMakeRule // will not quote the next commands // it is reset to false after each // call to OutputMakeRule + std::string m_LibraryPathOption; }; #endif |