Day 11, part 1, but horrible

This commit is contained in:
2019-12-11 20:40:09 +00:00
parent e81f3f6ab7
commit 48ca004a53
4 changed files with 142 additions and 3 deletions

16
11/build.zig Normal file
View File

@@ -0,0 +1,16 @@
const Builder = @import("std").build.Builder;
pub fn build(b: *Builder) void {
const mode = b.standardReleaseOptions();
const exe = b.addExecutable("11", "src/main.zig");
exe.setBuildMode(mode);
exe.addPackagePath("intcode", "../lib/intcode/intcode.zig");
exe.install();
const run_cmd = exe.run();
run_cmd.step.dependOn(b.getInstallStep());
const run_step = b.step("run", "Run the app");
run_step.dependOn(&run_cmd.step);
}