const Builder = @import("std").build.Builder;

pub fn build(b: *Builder) void {
    const mode = b.standardReleaseOptions();
    const exe = b.addExecutable("qubit", "src/main.zig");
    exe.setBuildMode(mode);

    exe.linkSystemLibrary("c"); // link with libc
    exe.linkSystemLibrary("ncurses"); // link with ncurses.a (requires ncurses be installed where program is run)
    
    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);
}