| 1234567891011121314151617181920212223 |
- const std = @import("std");
- pub fn build(b: *std.Build) void {
- const exe1 = b.addExecutable(.{
- .name = "day1a",
- .root_module = b.createModule(.{
- .root_source_file = b.path("day1a.zig"),
- .target = b.graph.host,
- }),
- });
- b.installArtifact(exe1);
- const exe2 = b.addExecutable(.{
- .name = "day1b",
- .root_module = b.createModule(.{
- .root_source_file = b.path("day1b.zig"),
- .target = b.graph.host,
- }),
- });
- b.installArtifact(exe2);
- }
|