19 lines
561 B
Zig
19 lines
561 B
Zig
const std = @import("std");
|
|
|
|
pub fn module(b: *std.Build) *std.build.Module {
|
|
return b.createModule(.{
|
|
.source_file = .{ .path = sdkPath("/src/main.zig") },
|
|
});
|
|
}
|
|
|
|
pub fn link(step: *std.build.CompileStep) void {
|
|
step.addIncludePath(sdkPath("/upstream/include"));
|
|
}
|
|
|
|
fn sdkPath(comptime suffix: []const u8) []const u8 {
|
|
if (suffix[0] != '/') @compileError("suffix must be an absolute path");
|
|
return comptime blk: {
|
|
const root_dir = std.fs.path.dirname(@src().file) orelse ".";
|
|
break :blk root_dir ++ suffix;
|
|
};
|
|
}
|