diff options
author | Stephen Kelly <steveire@gmail.com> | 2013-10-28 18:47:46 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-07-27 19:58:50 (GMT) |
commit | 9f2dca805c8010636d4be7ef03d96bfc131c9809 (patch) | |
tree | 0fe3e34e2ef5344d53d3d0d5c41f36bb17942321 /Source/cmCustomCommandGenerator.cxx | |
parent | c7a8e74b8c7ade9efb68b8bd36fd6d741f2dba7e (diff) | |
download | CMake-9f2dca805c8010636d4be7ef03d96bfc131c9809.zip CMake-9f2dca805c8010636d4be7ef03d96bfc131c9809.tar.gz CMake-9f2dca805c8010636d4be7ef03d96bfc131c9809.tar.bz2 |
Move GetLocation to cmGeneratorTarget.
Diffstat (limited to 'Source/cmCustomCommandGenerator.cxx')
-rw-r--r-- | Source/cmCustomCommandGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmCustomCommandGenerator.cxx b/Source/cmCustomCommandGenerator.cxx index 086c9f9..7f3b651 100644 --- a/Source/cmCustomCommandGenerator.cxx +++ b/Source/cmCustomCommandGenerator.cxx @@ -48,7 +48,7 @@ std::string cmCustomCommandGenerator::GetCommand(unsigned int c) const (target->Target->IsImported() || !this->LG->GetMakefile()->IsOn("CMAKE_CROSSCOMPILING"))) { - return target->Target->GetLocation(this->Config); + return target->GetLocation(this->Config); } return this->GE->Parse(argv0)->Evaluate(this->LG->GetMakefile(), this->Config); |