File tree 2 files changed +5
-0
lines changed
2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -16,8 +16,10 @@ pub fn build(b: *std.Build) void {
16
16
module .linkFramework ("AppKit" , .{});
17
17
if (target .result .cpu .arch == .x86_64 ) {
18
18
module .addAssemblyFile (b .path ("MACHAppDelegate_x86_64_apple_macos12.s" ));
19
+ module .addAssemblyFile (b .path ("MACHWindowDelegate_x86_64_apple_macos12.s" ));
19
20
} else {
20
21
module .addAssemblyFile (b .path ("MACHAppDelegate_arm64_apple_macos12.s" ));
22
+ module .addAssemblyFile (b .path ("MACHWindowDelegate_arm64_apple_macos12.s" ));
21
23
}
22
24
} else {
23
25
module .linkFramework ("UIKit" , .{});
Original file line number Diff line number Diff line change 18
18
"MACHAppDelegate_arm64_apple_macos12.s" ,
19
19
"MACHAppDelegate_x86_64_apple_macos12.s" ,
20
20
"MACHAppDelegate.m" ,
21
+ "MACHWindowDelegate_arm64_apple_macos12.s" ,
22
+ "MACHWindowDelegate_x86_64_apple_macos12.s" ,
23
+ "MACHWindowDelegate.m" ,
21
24
"metal_manual.zig" ,
22
25
"registry.zig" ,
23
26
"update.sh" ,
You can’t perform that action at this time.
0 commit comments