| 3050 | } |
| 3051 | |
| 3052 | void cmMakefile::SetArgcArgv(std::vector<std::string> const& args) |
| 3053 | { |
| 3054 | this->AddDefinition("CMAKE_ARGC", std::to_string(args.size())); |
| 3055 | |
| 3056 | for (auto i = 0u; i < args.size(); ++i) { |
| 3057 | this->AddDefinition(cmStrCat("CMAKE_ARGV", i), args[i]); |
| 3058 | } |
| 3059 | } |
| 3060 | |
| 3061 | cmSourceFile* cmMakefile::GetSource(std::string const& sourceName, |
| 3062 | cmSourceFileLocationKind kind) const |
no test coverage detected