aboutsummaryrefslogtreecommitdiffstats
path: root/build.zig
blob: 851fc29af44bc26f765294827503502e0a06e165 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
const Builder = @import("std").build.Builder;

pub fn build(b: *Builder) void {
    const mode = b.standardReleaseOptions();
    const exe = b.addExecutable("t", "src/main.zig");
    exe.setBuildMode(mode);
    exe.linkLibC();
    exe.linkSystemLibrary("yaml-0.1");
    exe.linkSystemLibrary("glfw3");
    exe.linkSystemLibrary("epoxy");
    exe.linkSystemLibrary("liblo");
    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);
}