elphin/example-ci/build.zig

12 lines
352 B
Zig
Raw Normal View History

2024-05-10 18:48:01 +00:00
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");
const convert = elphin.buildlib.convertFile(b, "lol.elf", .{});
b.getInstallStep().dependOn(&file.step);
b.getInstallStep().dependOn(&convert.step);
}