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