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/cmLocalVisualStudio6Generator.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/cmLocalVisualStudio6Generator.cxx')
-rw-r--r-- | Source/cmLocalVisualStudio6Generator.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmLocalVisualStudio6Generator.cxx b/Source/cmLocalVisualStudio6Generator.cxx index a26a1dd..9263053 100644 --- a/Source/cmLocalVisualStudio6Generator.cxx +++ b/Source/cmLocalVisualStudio6Generator.cxx @@ -62,7 +62,7 @@ public: } void Write(cmCustomCommand const& cc) { - cmCustomCommandGenerator ccg(cc, this->Config, this->LG->GetMakefile()); + cmCustomCommandGenerator ccg(cc, this->Config, this->LG); if(this->First) { this->Code += this->Event + "_Cmds="; @@ -625,7 +625,7 @@ cmLocalVisualStudio6Generator for(i = this->Configurations.begin(); i != this->Configurations.end(); ++i) { std::string config = this->GetConfigName(*i); - cmCustomCommandGenerator ccg(command, config, this->Makefile); + cmCustomCommandGenerator ccg(command, config, this); std::string comment = this->ConstructComment(ccg, "Building Custom Rule $(InputPath)"); if(comment == "<hack>") |