16 lines
406 B
Zig
16 lines
406 B
Zig
|
const Builder = @import("std").build.Builder;
|
||
|
|
||
|
pub fn build(b: *Builder) void {
|
||
|
const mode = b.standardReleaseOptions();
|
||
|
const exe = b.addExecutable("spoodle", "src/main.zig");
|
||
|
exe.setBuildMode(mode);
|
||
|
|
||
|
const run_cmd = exe.run();
|
||
|
|
||
|
const run_step = b.step("run", "Run the app");
|
||
|
run_step.dependOn(&run_cmd.step);
|
||
|
|
||
|
b.default_step.dependOn(&exe.step);
|
||
|
b.installArtifact(exe);
|
||
|
}
|