diff options
-rw-r--r-- | Source/cmITKWrapTclCommand.cxx | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/Source/cmITKWrapTclCommand.cxx b/Source/cmITKWrapTclCommand.cxx index abda785..838fc3f 100644 --- a/Source/cmITKWrapTclCommand.cxx +++ b/Source/cmITKWrapTclCommand.cxx @@ -70,8 +70,15 @@ 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; - depends.push_back(command); - std::vector<std::string > commandArgs; + + // 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"); std::string tmp = tclFile+".cxx"; |