diff options
author | Brad King <brad.king@kitware.com> | 2009-02-10 13:50:33 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-02-10 13:50:33 (GMT) |
commit | c895d9f2e0dac609a8e3e126cc05a0400e9740a9 (patch) | |
tree | beb15f3e759df34a6fbf6dd66d465f0c5be6112c /Source/cmMakefileTargetGenerator.cxx | |
parent | 13f9bb646d5ce506efb8fc2d36b6f9ce2268fb2e (diff) | |
download | CMake-c895d9f2e0dac609a8e3e126cc05a0400e9740a9.zip CMake-c895d9f2e0dac609a8e3e126cc05a0400e9740a9.tar.gz CMake-c895d9f2e0dac609a8e3e126cc05a0400e9740a9.tar.bz2 |
ENH: Give target in which custom commands build
This gives the cmTarget instance for which custom command rules are
being generated to cmLocalUnixMakefileGenerator3::AppendCustomCommands.
It will be useful in the future.
Diffstat (limited to 'Source/cmMakefileTargetGenerator.cxx')
-rw-r--r-- | Source/cmMakefileTargetGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmMakefileTargetGenerator.cxx b/Source/cmMakefileTargetGenerator.cxx index 4e71b2c..6bc5bd2 100644 --- a/Source/cmMakefileTargetGenerator.cxx +++ b/Source/cmMakefileTargetGenerator.cxx @@ -1125,7 +1125,7 @@ void cmMakefileTargetGenerator // Now append the actual user-specified commands. cmOStringStream content; - this->LocalGenerator->AppendCustomCommand(commands, cc, false, + this->LocalGenerator->AppendCustomCommand(commands, cc, this->Target, false, cmLocalGenerator::HOME_OUTPUT, &content); |