diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-07-25 15:52:10 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-07-27 18:09:38 (GMT) |
commit | d568eefe104e480706a2e6ceb16df4376d4becbf (patch) | |
tree | 60aee888508ff833db298c7d9ed7fdeee2cfe89b /Source/cmLocalUnixMakefileGenerator3.cxx | |
parent | 26d1a9d356ad3122f7d07dcd93d12767726807cf (diff) | |
download | CMake-d568eefe104e480706a2e6ceb16df4376d4becbf.zip CMake-d568eefe104e480706a2e6ceb16df4376d4becbf.tar.gz CMake-d568eefe104e480706a2e6ceb16df4376d4becbf.tar.bz2 |
cmCustomCommandGenerator: Require cmLocalGenerator in API.
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator3.cxx')
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator3.cxx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.cxx b/Source/cmLocalUnixMakefileGenerator3.cxx index 077d4d9..de86c6b 100644 --- a/Source/cmLocalUnixMakefileGenerator3.cxx +++ b/Source/cmLocalUnixMakefileGenerator3.cxx @@ -1007,8 +1007,7 @@ cmLocalUnixMakefileGenerator3 for(std::vector<cmCustomCommand>::const_iterator i = ccs.begin(); i != ccs.end(); ++i) { - cmCustomCommandGenerator ccg(*i, this->ConfigName, - this->Makefile); + cmCustomCommandGenerator ccg(*i, this->ConfigName, this); this->AppendCustomDepend(depends, ccg); } } @@ -1043,8 +1042,7 @@ cmLocalUnixMakefileGenerator3 for(std::vector<cmCustomCommand>::const_iterator i = ccs.begin(); i != ccs.end(); ++i) { - cmCustomCommandGenerator ccg(*i, this->ConfigName, - this->Makefile); + cmCustomCommandGenerator ccg(*i, this->ConfigName, this); this->AppendCustomCommand(commands, ccg, target, true, relative); } } |