diff options
Diffstat (limited to 'Source/cmLocalGenerator.h')
-rw-r--r-- | Source/cmLocalGenerator.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/Source/cmLocalGenerator.h b/Source/cmLocalGenerator.h index 0268787..c7a370d 100644 --- a/Source/cmLocalGenerator.h +++ b/Source/cmLocalGenerator.h @@ -65,11 +65,19 @@ public: ///! Set the Global Generator, done on creation by the GlobalGenerator void SetGlobalGenerator(cmGlobalGenerator *gg); - + std::string ConvertToRelativeOutputPath(const char* p); protected: bool m_FromTheTop; cmMakefile *m_Makefile; cmGlobalGenerator *m_GlobalGenerator; + // members used for relative path function ConvertToMakefilePath + std::string m_RelativePathToSourceDir; + std::string m_RelativePathToBinaryDir; + std::string m_CurrentOutputDirectory; + std::string m_HomeOutputDirectory; + std::string m_HomeDirectory; + std::string m_HomeOutputDirectoryNoSlash; + }; #endif |