You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
1.1 KiB
Zig

const std = @import("std");
pub fn build(b: *std.build.Builder) void {
const optimize = b.standardOptimizeOption(.{});
const target = b.standardTargetOptions(.{});
const elf2uf2 = b.addExecutable(.{
.name = "elf2uf2",
.root_source_file = .{ .path = "src/elf2uf2.zig" },
.target = target,
.optimize = optimize,
});
b.installArtifact(elf2uf2);
_ = b.addModule("uf2", .{
.source_file = .{ .path = "src/uf2.zig" },
});
const main_tests = b.addTest(.{
.root_source_file = .{ .path = "src/uf2.zig" },
});
const test_step = b.step("test", "Run library tests");
test_step.dependOn(&main_tests.step);
const gen = b.addExecutable(.{
.name = "gen",
.root_source_file = .{ .path = "src/gen.zig" },
});
const gen_run_step = b.addRunArtifact(gen);
const gen_step = b.step("gen", "Generate family id enum");
gen_step.dependOn(&gen_run_step.step);
const example = b.addExecutable(.{
.name = "example",
.root_source_file = .{ .path = "src/example.zig" },
});
b.installArtifact(example);
}