diff options
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r-- | Source/cmMakefile.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index c868159..9e14917 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -1637,12 +1637,12 @@ void cmMakefile::AddSubDirectory(const std::string& srcPath, const char* cmMakefile::GetCurrentSourceDirectory() const { - return this->StateSnapshot.GetDirectory().GetCurrentSource(); + return this->StateSnapshot.GetDirectory().GetCurrentSource().c_str(); } const char* cmMakefile::GetCurrentBinaryDirectory() const { - return this->StateSnapshot.GetDirectory().GetCurrentBinary(); + return this->StateSnapshot.GetDirectory().GetCurrentBinary().c_str(); } std::vector<cmTarget*> cmMakefile::GetImportedTargets() const |