| ... | @@ -94,6 +94,12 @@ pub fn main() !void { | ... | @@ -94,6 +94,12 @@ pub fn main() !void { |
| 94 | | 94 | |
| 95 | if (blacklisted) continue; | 95 | if (blacklisted) continue; |
| 96 | | 96 | |
| | 97 | if (std.mem.endsWith(u8, entry.basename, "_windowsapp.def")) |
| | 98 | continue; |
| | 99 | |
| | 100 | if (std.mem.endsWith(u8, entry.basename, "_onecore.def")) |
| | 101 | continue; |
| | 102 | |
| 97 | src_crt_dir.copyFile(entry.path, dest_crt_dir, entry.path, .{}) catch |err| { | 103 | src_crt_dir.copyFile(entry.path, dest_crt_dir, entry.path, .{}) catch |err| { |
| 98 | std.log.err("unable to copy {s}: {s}", .{ entry.path, @errorName(err) }); | 104 | std.log.err("unable to copy {s}: {s}", .{ entry.path, @errorName(err) }); |
| 99 | fail = true; | 105 | fail = true; |