diff options
author | Brad King <brad.king@kitware.com> | 2016-06-13 13:54:24 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2016-06-13 13:54:24 (GMT) |
commit | 18e00ac7b918865c38a2e34ee584e18c1126c663 (patch) | |
tree | 7383c63f1bf6f4bce043183a670b1102742acbae /Source/cmLocalGenerator.cxx | |
parent | 3b14a4bca417eeafac3daeb306a72dcbba47246e (diff) | |
parent | ea5324cd4b570ea757a6da96a7bc85538943e008 (diff) | |
download | CMake-18e00ac7b918865c38a2e34ee584e18c1126c663.zip CMake-18e00ac7b918865c38a2e34ee584e18c1126c663.tar.gz CMake-18e00ac7b918865c38a2e34ee584e18c1126c663.tar.bz2 |
Merge topic 'avoid-cmMakefile-IssueMessage-after-configure'
ea5324cd cmMakefile: Port messages for compile features to cmake
df8c3130 cmGlobalGenerator: Don't use cmMakefile::IssueMessage after configure
946d1e50 cmMakefile: Avoid IssueMessage after configure is finished
096c7754 cmLocalGenerator: Store Backtrace for the directory
Diffstat (limited to 'Source/cmLocalGenerator.cxx')
-rw-r--r-- | Source/cmLocalGenerator.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmLocalGenerator.cxx b/Source/cmLocalGenerator.cxx index 2ccaa82..2f50b7f 100644 --- a/Source/cmLocalGenerator.cxx +++ b/Source/cmLocalGenerator.cxx @@ -45,6 +45,7 @@ cmLocalGenerator::cmLocalGenerator(cmGlobalGenerator* gg, cmMakefile* makefile) : cmOutputConverter(makefile->GetStateSnapshot()) , StateSnapshot(makefile->GetStateSnapshot()) + , DirectoryBacktrace(makefile->GetBacktrace()) { this->GlobalGenerator = gg; @@ -68,7 +69,7 @@ cmLocalGenerator::~cmLocalGenerator() void cmLocalGenerator::IssueMessage(cmake::MessageType t, std::string const& text) const { - this->Makefile->IssueMessage(t, text); + this->GetCMakeInstance()->IssueMessage(t, text, this->DirectoryBacktrace); } void cmLocalGenerator::ComputeObjectMaxPath() |