make sure ; expansion is done in all commands

This commit is contained in:
Bill Hoffman
2002-03-29 14:20:32 -05:00
parent 0223ba91f3
commit 7d76de4403
63 changed files with 283 additions and 263 deletions

View File

@@ -34,13 +34,7 @@ bool cmAddTestCommand::InitialPass(std::vector<std::string> const& args)
// also expand any CMake variables
m_Args.erase(m_Args.begin(), m_Args.end());
std::string temp;
for (std::vector<std::string>::const_iterator j = args.begin();
j != args.end(); ++j)
{
m_Args.push_back(*j);
}
cmSystemTools::ExpandListArguments(args, m_Args);
return true;
}