elphin/example-ci/build.zig
2024-05-10 21:00:16 +02:00

11 lines
347 B
Zig

const std = @import("std");
const elphin = @import("elphin");
pub fn build(b: *std.Build) void {
const file = b.addInstallBinFile(.{ .path = "../testdata/example.elf" }, "lol.elf");
b.getInstallStep().dependOn(&file.step);
const convert = elphin.convertInstalled(b, "lol.elf", .{});
b.getInstallStep().dependOn(&convert.step);
}