(project: pathlib.Path, dest_dir: pathlib.Path)
| 1176 | res["object_file_format"] = "coff" |
| 1177 | |
| 1178 | def process_project(project: pathlib.Path, dest_dir: pathlib.Path): |
| 1179 | for f in sorted(os.listdir(intermediates_path / project)): |
| 1180 | p = intermediates_path / project / f |
| 1181 | dest = dest_dir / p.name |
| 1182 | |
| 1183 | if p.suffix == ".obj": |
| 1184 | log("copying object file %s to %s" % (p, dest_dir)) |
| 1185 | shutil.copyfile(p, dest) |
| 1186 | yield f |
| 1187 | |
| 1188 | def find_additional_dependencies(project: pathlib.Path): |
| 1189 | vcproj = pcbuild_path / ("%s.vcxproj" % project) |
no test coverage detected