ENH: Creation of generator rule now properly uses the custom command's m_Source member.

This commit is contained in:
Brad King 2001-03-08 17:30:53 -05:00
parent 71153219e1
commit 519f9d81e3
1 changed files with 3 additions and 5 deletions

View File

@ -38,11 +38,9 @@ bool cmCablePackageCommand::Invoke(std::vector<std::string>& args)
// Add custom rules to the makefile to generate this package's source // Add custom rules to the makefile to generate this package's source
// files. // files.
std::vector<std::string> depends;
depends.push_back("cable_config.xml");
std::string command = "${CABLE}"; std::string command = "${CABLE}";
m_Makefile->ExpandVariablesInString(command); m_Makefile->ExpandVariablesInString(command);
std::vector<std::string> depends;
depends.push_back(command); depends.push_back(command);
command += " cable_config.xml"; command += " cable_config.xml";
@ -51,13 +49,13 @@ bool cmCablePackageCommand::Invoke(std::vector<std::string>& args)
std::string packageSource = packageFile+".cxx"; std::string packageSource = packageFile+".cxx";
// A rule for the package's header file. // A rule for the package's header file.
m_Makefile->AddCustomCommand("", m_Makefile->AddCustomCommand("cable_config.xml",
packageHeader.c_str(), packageHeader.c_str(),
command.c_str(), command.c_str(),
depends); depends);
// A rule for the package's source file. // A rule for the package's source file.
m_Makefile->AddCustomCommand("", m_Makefile->AddCustomCommand("cable_config.xml",
packageSource.c_str(), packageSource.c_str(),
command.c_str(), command.c_str(),
depends); depends);