ENH: make sure command is unix style as it may have been sent into cmake as a windows path
This commit is contained in:
parent
456f01e35b
commit
bb08b88cc4
|
@ -42,6 +42,7 @@ void cmTest::SetCommand(const char* command)
|
||||||
command = "";
|
command = "";
|
||||||
}
|
}
|
||||||
this->Command = command;
|
this->Command = command;
|
||||||
|
cmSystemTools::ConvertToUnixSlashes(this->Command);
|
||||||
}
|
}
|
||||||
|
|
||||||
void cmTest::SetArguments(const std::vector<cmStdString>& args)
|
void cmTest::SetArguments(const std::vector<cmStdString>& args)
|
||||||
|
|
Loading…
Reference in New Issue