build.zig 309 B

12345678910111213
  1. const std = @import("std");
  2. pub fn build(b: *std.Build) void {
  3. const exe1 = b.addExecutable(.{
  4. .name = "day12a",
  5. .root_module = b.createModule(.{
  6. .root_source_file = b.path("day12a.zig"),
  7. .target = b.graph.host,
  8. }),
  9. });
  10. b.installArtifact(exe1);
  11. }