authorgravatar for kubkon@jakubkonka.comJakub Konka <kubkon@jakubkonka.com> 2024-05-13 08:55:27+02:00
committergravatar for kubkon@jakubkonka.comJakub Konka <kubkon@jakubkonka.com> 2024-05-13 08:55:27+02:00
log6f117dbca41e4dfede925d046b572df40849a9c4
treeb5bea0ef446b5451d266dd46ef5ac43f1e6a204c
parente69caaa39f06b7ddf00c1e439c3df91f4efbdef3

test/standalone: fix iOS smoke test


1 files changed, 3 insertions(+), 3 deletions(-)

test/standalone/ios/build.zig+3-3
...@@ -22,9 +22,9 @@ pub fn build(b: *std.Build) void {...@@ -22,9 +22,9 @@ pub fn build(b: *std.Build) void {
22 .target = target,22 .target = target,
23 });23 });
24 exe.addCSourceFile(.{ .file = b.path("main.m"), .flags = &.{} });24 exe.addCSourceFile(.{ .file = b.path("main.m"), .flags = &.{} });
25 exe.addSystemIncludePath(b.path(b.pathJoin(&.{ sdk, "/usr/include" })));25 exe.addSystemIncludePath(.{ .cwd_relative = b.pathJoin(&.{ sdk, "/usr/include" }) });
26 exe.addSystemFrameworkPath(b.path(b.pathJoin(&.{ sdk, "/System/Library/Frameworks" })));26 exe.addSystemFrameworkPath(.{ .cwd_relative = b.pathJoin(&.{ sdk, "/System/Library/Frameworks" }) });
27 exe.addLibraryPath(b.path(b.pathJoin(&.{ sdk, "/usr/lib" })));27 exe.addLibraryPath(.{ .cwd_relative = b.pathJoin(&.{ sdk, "/usr/lib" }) });
28 exe.linkFramework("Foundation");28 exe.linkFramework("Foundation");
29 exe.linkFramework("UIKit");29 exe.linkFramework("UIKit");
30 exe.linkLibC();30 exe.linkLibC();