summaryrefslogtreecommitdiffstats
path: root/Source/cmTarget.cxx
diff options
context:
space:
mode:
authorAlexander Neundorf <neundorf@kde.org>2007-05-24 12:43:31 (GMT)
committerAlexander Neundorf <neundorf@kde.org>2007-05-24 12:43:31 (GMT)
commit79756b0e676c9e5e02ad13039ad092b78f64f63d (patch)
tree033fdc6513036fa3adafd205956903b25c285020 /Source/cmTarget.cxx
parente10e3bc86edd3b319f036a5e33a428863d0e91f8 (diff)
downloadCMake-79756b0e676c9e5e02ad13039ad092b78f64f63d.zip
CMake-79756b0e676c9e5e02ad13039ad092b78f64f63d.tar.gz
CMake-79756b0e676c9e5e02ad13039ad092b78f64f63d.tar.bz2
BUG: don't use non-imported target when cross compiling as commands in custom commands
STYLE: remove now invalid comments, use this-> Alex
Diffstat (limited to 'Source/cmTarget.cxx')
-rw-r--r--Source/cmTarget.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx
index 6d9b419..ac8d34b 100644
--- a/Source/cmTarget.cxx
+++ b/Source/cmTarget.cxx
@@ -547,9 +547,9 @@ void cmTarget::TraceVSDependencies(std::string projFile,
}
}
- CheckForTargetsAsCommand(this->GetPreBuildCommands());
- CheckForTargetsAsCommand(this->GetPreLinkCommands());
- CheckForTargetsAsCommand(this->GetPostBuildCommands());
+ this->CheckForTargetsAsCommand(this->GetPreBuildCommands());
+ this->CheckForTargetsAsCommand(this->GetPreLinkCommands());
+ this->CheckForTargetsAsCommand(this->GetPostBuildCommands());
while (!srcFilesToProcess.empty())
{