10 lines
347 B
Zig
10 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);
|
|
}
|