diff options
Diffstat (limited to 'Source/cmTest.cxx')
-rw-r--r-- | Source/cmTest.cxx | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/Source/cmTest.cxx b/Source/cmTest.cxx index c7b1637..ac61984 100644 --- a/Source/cmTest.cxx +++ b/Source/cmTest.cxx @@ -38,19 +38,9 @@ void cmTest::SetName(const char* name) this->Name = name; } -void cmTest::SetCommand(const char* command) +void cmTest::SetCommand(std::vector<std::string> const& command) { - if ( !command ) - { - command = ""; - } this->Command = command; - cmSystemTools::ConvertToUnixSlashes(this->Command); -} - -void cmTest::SetArguments(const std::vector<cmStdString>& args) -{ - this->Args = args; } const char *cmTest::GetProperty(const char* prop) const |