just adds an argument to the vector
| 43 | |
| 44 | // just adds an argument to the vector |
| 45 | void cmCTestScriptHandler::AddConfigurationScript(std::string const& script, |
| 46 | bool pscope) |
| 47 | { |
| 48 | this->ConfigurationScripts.emplace_back(script); |
| 49 | this->ScriptProcessScope.push_back(pscope); |
| 50 | } |
| 51 | |
| 52 | // the generic entry point for handling scripts, this routine will run all |
| 53 | // the scripts provides a -S arguments |
no test coverage detected