summaryrefslogtreecommitdiff
path: root/build.zig
blob: 3234a165cc57dc619e52247740368d298f9cf1d6 (plain)
1
2
3
4
5
6
7
const std = @import("std");
const print = std.debug.print;

pub fn build(b: *std.Build) void {
    const exe = b.addExecutable(.{ .name = "day01", .root_source_file = b.path("main.zig"), .target = b.standardTargetOptions(.{}), .optimize = .ReleaseFast });
    b.installArtifact(exe);
}