MCPcopy Create free account
hub / github.com/Kitware/CMake / InitialPass

Method InitialPass

Source/CTest/cmCTestReadCustomFilesCommand.cxx:12–26  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10class cmMakefile;
11
12bool cmCTestReadCustomFilesCommand::InitialPass(
13 std::vector<std::string> const& args, cmExecutionStatus& status) const
14{
15 if (args.empty()) {
16 status.SetError("called with incorrect number of arguments");
17 return false;
18 }
19
20 cmMakefile& mf = status.GetMakefile();
21 for (std::string const& arg : args) {
22 this->CTest->ReadCustomConfigurationFileTree(arg, &mf);
23 }
24
25 return true;
26}

Callers

nothing calls this directly

Calls 4

emptyMethod · 0.45
SetErrorMethod · 0.45
GetMakefileMethod · 0.45

Tested by

no test coverage detected