summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2013-01-20 11:57:25 (GMT)
committerStephen Kelly <steveire@gmail.com>2013-01-21 08:12:22 (GMT)
commitaa6674831c3ea3bf3cca7c9f667d2e5c75873a3d (patch)
tree9c0f02df2afec8a1f7f92ef2b387685b07944f94 /Source
parentd70204a86aa3e454e73049efda3e1ccea8c60720 (diff)
downloadCMake-aa6674831c3ea3bf3cca7c9f667d2e5c75873a3d.zip
CMake-aa6674831c3ea3bf3cca7c9f667d2e5c75873a3d.tar.gz
CMake-aa6674831c3ea3bf3cca7c9f667d2e5c75873a3d.tar.bz2
Specify the target whose includes are being listed.
Diffstat (limited to 'Source')
-rw-r--r--Source/cmTarget.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx
index fb99b4a..6c9ed1b 100644
--- a/Source/cmTarget.cxx
+++ b/Source/cmTarget.cxx
@@ -2785,8 +2785,8 @@ std::vector<std::string> cmTarget::GetIncludeDirectories(const char *config)
if (!usedIncludes.empty())
{
this->Makefile->GetCMakeInstance()->IssueMessage(cmake::LOG,
- "Used includes:\n" + usedIncludes,
- (*it)->ge->GetBacktrace());
+ "Used includes for target " + this->Name + ":\n"
+ + usedIncludes, (*it)->ge->GetBacktrace());
}
}
return includes;