This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

build(highway): require `apple_sdk` for darwin builds

+8
+7
pkg/highway/build.zig
··· 37 37 try android_ndk.addPaths(b, lib); 38 38 } 39 39 40 + // Mainly for iOS simulators, but we add for all Darwin target for 41 + // consistency. 42 + if (target.result.os.tag.isDarwin()) { 43 + const apple_sdk = @import("apple_sdk"); 44 + try apple_sdk.addPaths(b, lib); 45 + } 46 + 40 47 var flags: std.ArrayList([]const u8) = .empty; 41 48 defer flags.deinit(b.allocator); 42 49 try flags.appendSlice(b.allocator, &.{
+1
pkg/highway/build.zig.zon
··· 12 12 }, 13 13 14 14 .android_ndk = .{ .path = "../android-ndk" }, 15 + .apple_sdk = .{ .path = "../apple-sdk" }, 15 16 }, 16 17 }