mirror of https://git.s-ol.nu/glsl-view
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
813 B
Zig
32 lines
813 B
Zig
const std = @import("std");
|
|
|
|
pub fn build(b: *std.Build) void {
|
|
const optimize = b.standardOptimizeOption(.{});
|
|
const target = b.standardTargetOptions(.{});
|
|
|
|
const exe = b.addExecutable(.{
|
|
.name = "glsl-view",
|
|
.root_source_file = .{
|
|
.path = "src/main.zig",
|
|
},
|
|
.target = target,
|
|
.optimize = optimize,
|
|
});
|
|
exe.linkLibC();
|
|
exe.linkSystemLibrary("yaml-0.1");
|
|
exe.linkSystemLibrary("glfw3");
|
|
exe.linkSystemLibrary("epoxy");
|
|
exe.linkSystemLibrary("liblo");
|
|
b.installArtifact(exe);
|
|
|
|
const run_cmd = b.addRunArtifact(exe);
|
|
run_cmd.step.dependOn(b.getInstallStep());
|
|
|
|
if (b.args) |args| {
|
|
run_cmd.addArgs(args);
|
|
}
|
|
|
|
const run_step = b.step("run", "Run the app");
|
|
run_step.dependOn(&run_cmd.step);
|
|
}
|