2022-05-21 23:35:00 +02:00
|
|
|
const std = @import("std");
|
|
|
|
|
|
|
|
pub fn build(b: *std.build.Builder) void {
|
|
|
|
const target = b.standardTargetOptions(.{});
|
2023-02-17 23:12:19 +01:00
|
|
|
const mode = b.standardOptimizeOption(.{});
|
2022-05-21 23:35:00 +02:00
|
|
|
|
2023-02-17 23:12:19 +01:00
|
|
|
const exe = b.addExecutable(.{
|
|
|
|
.name = "randomwallpaper",
|
|
|
|
.root_source_file = .{ .path = "src/main.zig" },
|
|
|
|
.target = target,
|
|
|
|
.optimize = mode,
|
|
|
|
});
|
2022-05-21 23:35:00 +02:00
|
|
|
|
|
|
|
exe.linkLibC();
|
2023-08-12 22:06:23 +02:00
|
|
|
exe.linkSystemLibrary("xcb");
|
|
|
|
exe.linkSystemLibrary("xcb-xinerama");
|
2022-05-21 23:35:00 +02:00
|
|
|
|
2022-05-21 23:51:36 +02:00
|
|
|
exe.strip = mode != .Debug;
|
|
|
|
|
2023-04-17 21:29:15 +02:00
|
|
|
b.installArtifact(exe);
|
2022-05-21 23:35:00 +02:00
|
|
|
|
2023-04-17 21:29:15 +02:00
|
|
|
const run_cmd = b.addRunArtifact(exe);
|
2022-05-21 23:35:00 +02: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);
|
|
|
|
}
|