ENH: Added dependency hack to support wrapping test.

This commit is contained in:
Brad King 2002-05-08 17:45:31 -04:00
parent 8e69c98615
commit b272f6455f
1 changed files with 9 additions and 2 deletions

View File

@ -70,7 +70,14 @@ bool cmITKWrapTclCommand::CreateCableRule(const char* configFile)
// Generate the rule to run cable to generate wrappers.
std::string command = this->GetCableFromCache();
std::vector<std::string> depends;
// Special case for CMake's wrapping test. Don't add dependency if
// it is a dummy executable.
if(command != "echo")
{
depends.push_back(command);
}
std::vector<std::string> commandArgs;
commandArgs.push_back(inFile);
commandArgs.push_back("-tcl");