2022-11-16 22:55:11 +01:00
|
|
|
const std = @import("std");
|
|
|
|
|
2024-01-08 17:40:08 +01:00
|
|
|
pub fn build(b: *std.Build) void {
|
2022-11-16 22:55:11 +01:00
|
|
|
const target = b.standardTargetOptions(.{});
|
2023-02-06 14:28:15 +01:00
|
|
|
const mode = b.standardOptimizeOption(.{});
|
|
|
|
|
|
|
|
const exe = b.addExecutable(.{
|
|
|
|
.name = "openbrowser",
|
|
|
|
.root_source_file = .{ .path = "src/main.zig" },
|
|
|
|
.target = target,
|
|
|
|
.optimize = mode,
|
|
|
|
});
|
2024-03-20 20:45:59 +01:00
|
|
|
|
|
|
|
exe.root_module.addImport("common", b.dependency("common", .{}).module("common"));
|
|
|
|
|
2023-04-17 21:29:15 +02:00
|
|
|
b.installArtifact(exe);
|
2022-11-16 22:55:11 +01:00
|
|
|
|
|
|
|
const desktop_install_step = b.addInstallFile(
|
|
|
|
.{ .path = "assets/openbrowser.desktop" },
|
|
|
|
"share/applications/openbrowser.desktop",
|
|
|
|
);
|
|
|
|
b.getInstallStep().dependOn(&desktop_install_step.step);
|
|
|
|
|
2023-04-17 21:29:15 +02:00
|
|
|
const run_cmd = b.addRunArtifact(exe);
|
2022-11-16 22:55:11 +01:00
|
|
|
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);
|
|
|
|
}
|