This commit is contained in:
2019-12-07 17:31:23 +00:00
parent ea8f7914f9
commit 4f614c7727
5 changed files with 201 additions and 1 deletions

15
07/build.zig Normal file
View File

@@ -0,0 +1,15 @@
const Builder = @import("std").build.Builder;
pub fn build(b: *Builder) void {
const mode = b.standardReleaseOptions();
const exe = b.addExecutable("07", "src/main.zig");
exe.addPackagePath("intcode", "../lib/intcode/intcode.zig");
exe.setBuildMode(mode);
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);
}