mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-03 12:49:50 -05:00
ENH: Added dependency hack to support wrapping test.
This commit is contained in:
@@ -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";
|
||||
|
||||
Reference in New Issue
Block a user