Commit 6f117dbca4
Changed files (1)
test
standalone
ios
test/standalone/ios/build.zig
@@ -22,9 +22,9 @@ pub fn build(b: *std.Build) void {
.target = target,
});
exe.addCSourceFile(.{ .file = b.path("main.m"), .flags = &.{} });
- exe.addSystemIncludePath(b.path(b.pathJoin(&.{ sdk, "/usr/include" })));
- exe.addSystemFrameworkPath(b.path(b.pathJoin(&.{ sdk, "/System/Library/Frameworks" })));
- exe.addLibraryPath(b.path(b.pathJoin(&.{ sdk, "/usr/lib" })));
+ exe.addSystemIncludePath(.{ .cwd_relative = b.pathJoin(&.{ sdk, "/usr/include" }) });
+ exe.addSystemFrameworkPath(.{ .cwd_relative = b.pathJoin(&.{ sdk, "/System/Library/Frameworks" }) });
+ exe.addLibraryPath(.{ .cwd_relative = b.pathJoin(&.{ sdk, "/usr/lib" }) });
exe.linkFramework("Foundation");
exe.linkFramework("UIKit");
exe.linkLibC();