dotfiles/scripts/playtwitch/build.zig

43 lines
1.2 KiB
Zig
Raw Normal View History

const std = @import("std");
pub fn build(b: *std.Build) void {
const target = b.standardTargetOptions(.{});
2023-04-02 15:08:25 +02:00
const optimize = b.standardOptimizeOption(.{});
2023-04-02 15:08:25 +02:00
const exe = b.addExecutable(.{
.name = "playtwitch",
.root_source_file = .{ .path = "src/main.zig" },
.target = target,
.optimize = optimize,
});
exe.linkLibC();
2022-10-29 21:49:44 +02:00
exe.linkSystemLibrary("cimgui");
exe.linkSystemLibrary("glfw3");
exe.linkSystemLibrary("glew");
2022-11-05 13:02:30 +01:00
exe.linkSystemLibrary("curl");
2023-04-17 21:29:15 +02:00
b.installArtifact(exe);
2022-10-03 11:41:49 +02:00
var logo_install_step = b.addInstallFile(
.{ .path = "assets/playtwitch.svg" },
"share/icons/hicolor/scalable/apps/playtwitch.svg",
);
b.getInstallStep().dependOn(&logo_install_step.step);
var desktop_entry_install_step = b.addInstallFile(
.{ .path = "assets/playtwitch.desktop" },
"share/applications/playtwitch.desktop",
);
b.getInstallStep().dependOn(&desktop_entry_install_step.step);
2023-04-17 21:29:15 +02:00
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);
}