| 177 | } |
| 178 | |
| 179 | std::unique_ptr<cmInstallFilesGenerator> CreateInstallFilesGenerator( |
| 180 | cmMakefile* mf, std::vector<std::string> const& absFiles, |
| 181 | cmInstallCommandArguments const& args, bool programs, |
| 182 | std::string const& destination) |
| 183 | { |
| 184 | cmInstallGenerator::MessageLevel message = |
| 185 | cmInstallGenerator::SelectMessageLevel(mf); |
| 186 | return cm::make_unique<cmInstallFilesGenerator>( |
| 187 | absFiles, destination, programs, args.GetPermissions(), |
| 188 | args.GetConfigurations(), args.GetComponent(), message, |
| 189 | args.GetExcludeFromAll(), args.GetRename(), args.GetOptional(), |
| 190 | mf->GetBacktrace()); |
| 191 | } |
| 192 | |
| 193 | std::unique_ptr<cmInstallFilesGenerator> CreateInstallFilesGenerator( |
| 194 | cmMakefile* mf, std::vector<std::string> const& absFiles, |
no test coverage detected
searching dependent graphs…