2022-10-16 20:31:31 +02:00
|
|
|
const std = @import("std");
|
|
|
|
|
2023-10-25 19:44:27 +02:00
|
|
|
const Scanner = @import("wayland").Scanner;
|
|
|
|
|
2024-01-08 17:40:08 +01:00
|
|
|
pub fn build(b: *std.Build) void {
|
2022-10-16 20:31:31 +02:00
|
|
|
const target = b.standardTargetOptions(.{});
|
2023-02-17 23:12:19 +01:00
|
|
|
const mode = b.standardOptimizeOption(.{});
|
2022-10-16 20:31:31 +02:00
|
|
|
|
2023-10-25 19:44:27 +02:00
|
|
|
const scanner = Scanner.create(b, .{});
|
2024-06-21 18:43:42 +02:00
|
|
|
const wayland_mod = b.createModule(.{ .root_source_file = scanner.result });
|
2023-10-25 19:44:27 +02:00
|
|
|
|
2023-02-17 23:12:19 +01:00
|
|
|
const exe = b.addExecutable(.{
|
|
|
|
.name = "vinput",
|
2024-06-21 18:43:42 +02:00
|
|
|
.root_source_file = b.path("src/main.zig"),
|
2023-02-17 23:12:19 +01:00
|
|
|
.target = target,
|
|
|
|
.optimize = mode,
|
2024-06-21 18:43:42 +02:00
|
|
|
.link_libc = true,
|
2023-02-17 23:12:19 +01:00
|
|
|
});
|
2022-10-17 10:47:36 +02:00
|
|
|
|
2024-03-20 20:45:59 +01:00
|
|
|
exe.root_module.addImport("common", b.dependency("common", .{}).module("common"));
|
2024-01-08 17:40:08 +01:00
|
|
|
exe.root_module.addImport("wayland", wayland_mod);
|
2023-10-25 19:44:27 +02:00
|
|
|
|
|
|
|
scanner.addSystemProtocol("stable/xdg-shell/xdg-shell.xml");
|
|
|
|
|
|
|
|
scanner.generate("wl_seat", 4);
|
|
|
|
scanner.generate("wl_data_device_manager", 3);
|
|
|
|
scanner.generate("wl_compositor", 4);
|
|
|
|
scanner.generate("wl_shm", 1);
|
2024-02-10 17:40:22 +01:00
|
|
|
scanner.generate("xdg_wm_base", 2);
|
2023-10-25 19:44:27 +02:00
|
|
|
|
2024-06-21 18:43:42 +02:00
|
|
|
scanner.addCSource(exe);
|
|
|
|
|
2024-01-08 17:40:08 +01:00
|
|
|
exe.root_module.linkSystemLibrary("wayland-client", .{});
|
2023-10-25 19:44:27 +02:00
|
|
|
|
2023-04-17 21:29:15 +02:00
|
|
|
b.installArtifact(exe);
|
2022-10-16 20:31:31 +02:00
|
|
|
|
2023-04-17 21:29:15 +02:00
|
|
|
const run_cmd = b.addRunArtifact(exe);
|
2022-10-16 20:31:31 +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);
|
|
|
|
}
|