Day 3.1 - first, bad attempt

This commit is contained in:
2019-12-03 22:34:17 +00:00
parent 14eff1a60c
commit 7fb5201a11
3 changed files with 229 additions and 0 deletions

14
03/build.zig Normal file
View File

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