2020-04-12 04:37:18 -07:00
|
|
|
const std = @import("std");
|
2020-03-19 08:29:22 -07:00
|
|
|
|
2020-04-12 04:37:18 -07:00
|
|
|
pub fn build(b: *std.build.Builder) !void {
|
2020-03-19 08:29:22 -07:00
|
|
|
// Standard target options allows the person running `zig build` to choose
|
|
|
|
// what target to build for. Here we do not override the defaults, which
|
|
|
|
// means any target is allowed, and the default is native. Other options
|
|
|
|
// for restricting supported target set are available.
|
|
|
|
const target = b.standardTargetOptions(.{});
|
|
|
|
|
|
|
|
// Standard release options allow the person running `zig build` to select
|
|
|
|
// between Debug, ReleaseSafe, ReleaseFast, and ReleaseSmall.
|
|
|
|
const mode = b.standardReleaseOptions();
|
|
|
|
|
2020-05-04 02:10:23 -07:00
|
|
|
const xwayland = b.option(
|
|
|
|
bool,
|
|
|
|
"xwayland",
|
|
|
|
"Set to true to enable xwayland support",
|
|
|
|
) orelse false;
|
|
|
|
|
2020-04-12 04:37:18 -07:00
|
|
|
const scan_protocols = ScanProtocolsStep.create(b);
|
|
|
|
|
2020-03-27 03:58:59 -07:00
|
|
|
const exe = b.addExecutable("river", "src/main.zig");
|
2020-03-19 08:29:22 -07:00
|
|
|
exe.setTarget(target);
|
|
|
|
exe.setBuildMode(mode);
|
2020-05-04 02:10:23 -07:00
|
|
|
exe.addBuildOption(bool, "xwayland", xwayland);
|
2020-04-12 04:54:03 -07:00
|
|
|
addDeps(exe, &scan_protocols.step);
|
2020-03-19 08:29:22 -07:00
|
|
|
exe.install();
|
|
|
|
|
|
|
|
const run_cmd = exe.run();
|
|
|
|
run_cmd.step.dependOn(b.getInstallStep());
|
|
|
|
|
2020-04-03 09:53:36 -07:00
|
|
|
const run_step = b.step("run", "Run the compositor");
|
2020-03-19 08:29:22 -07:00
|
|
|
run_step.dependOn(&run_cmd.step);
|
2020-04-03 09:53:36 -07:00
|
|
|
|
|
|
|
const test_exe = b.addTest("src/test_main.zig");
|
|
|
|
test_exe.setTarget(target);
|
|
|
|
test_exe.setBuildMode(mode);
|
2020-05-04 02:10:23 -07:00
|
|
|
test_exe.addBuildOption(bool, "xwayland", xwayland);
|
2020-04-12 04:54:03 -07:00
|
|
|
addDeps(test_exe, &scan_protocols.step);
|
2020-04-08 15:05:28 -07:00
|
|
|
|
2020-04-12 04:54:03 -07:00
|
|
|
const test_step = b.step("test", "Run the tests");
|
|
|
|
test_step.dependOn(&test_exe.step);
|
|
|
|
}
|
2020-04-12 04:37:18 -07:00
|
|
|
|
2020-04-12 04:54:03 -07:00
|
|
|
fn addDeps(exe: *std.build.LibExeObjStep, protocol_step: *std.build.Step) void {
|
|
|
|
exe.step.dependOn(protocol_step);
|
|
|
|
exe.addIncludeDir("protocol");
|
2020-04-08 15:05:28 -07:00
|
|
|
|
2020-04-15 03:47:55 -07:00
|
|
|
exe.addCSourceFile("include/bindings.c", &[_][]const u8{"-std=c99"});
|
2020-04-12 04:54:03 -07:00
|
|
|
exe.addIncludeDir(".");
|
2020-04-03 09:53:36 -07:00
|
|
|
|
2020-04-12 04:54:03 -07:00
|
|
|
exe.linkLibC();
|
2020-05-02 07:04:14 -07:00
|
|
|
exe.linkSystemLibrary("pixman-1");
|
2020-04-12 04:54:03 -07:00
|
|
|
exe.linkSystemLibrary("wayland-server");
|
|
|
|
exe.linkSystemLibrary("wlroots");
|
|
|
|
exe.linkSystemLibrary("xkbcommon");
|
2020-03-19 08:29:22 -07:00
|
|
|
}
|
2020-04-12 04:37:18 -07:00
|
|
|
|
|
|
|
const ScanProtocolsStep = struct {
|
|
|
|
builder: *std.build.Builder,
|
|
|
|
step: std.build.Step,
|
|
|
|
|
|
|
|
fn create(builder: *std.build.Builder) *ScanProtocolsStep {
|
|
|
|
const self = builder.allocator.create(ScanProtocolsStep) catch unreachable;
|
|
|
|
self.* = init(builder);
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn init(builder: *std.build.Builder) ScanProtocolsStep {
|
|
|
|
return ScanProtocolsStep{
|
|
|
|
.builder = builder,
|
|
|
|
.step = std.build.Step.init("Scan Protocols", builder.allocator, make),
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
fn make(step: *std.build.Step) !void {
|
|
|
|
const self = @fieldParentPtr(ScanProtocolsStep, "step", step);
|
|
|
|
|
|
|
|
const protocol_dir = std.fmt.trim(try self.builder.exec(
|
|
|
|
&[_][]const u8{ "pkg-config", "--variable=pkgdatadir", "wayland-protocols" },
|
|
|
|
));
|
|
|
|
|
|
|
|
const protocol_dir_paths = [_][]const []const u8{
|
|
|
|
&[_][]const u8{ protocol_dir, "stable/xdg-shell/xdg-shell.xml" },
|
|
|
|
&[_][]const u8{ "protocol", "wlr-layer-shell-unstable-v1.xml" },
|
|
|
|
};
|
|
|
|
|
|
|
|
for (protocol_dir_paths) |dir_path| {
|
|
|
|
const xml_in_path = try std.fs.path.join(self.builder.allocator, dir_path);
|
|
|
|
|
|
|
|
// Extension is .xml, so slice off the last 4 characters
|
|
|
|
const basename = std.fs.path.basename(xml_in_path);
|
|
|
|
const basename_no_ext = basename[0..(basename.len - 4)];
|
|
|
|
|
|
|
|
const header_out_path = try std.mem.concat(
|
|
|
|
self.builder.allocator,
|
|
|
|
u8,
|
|
|
|
&[_][]const u8{ "protocol/", basename_no_ext, "-protocol.h" },
|
|
|
|
);
|
|
|
|
const code_out_path = try std.mem.concat(
|
|
|
|
self.builder.allocator,
|
|
|
|
u8,
|
|
|
|
&[_][]const u8{ "protocol/", basename_no_ext, "-protocol.c" },
|
|
|
|
);
|
|
|
|
|
|
|
|
_ = try self.builder.exec(
|
|
|
|
&[_][]const u8{ "wayland-scanner", "server-header", xml_in_path, header_out_path },
|
|
|
|
);
|
|
|
|
_ = try self.builder.exec(
|
|
|
|
&[_][]const u8{ "wayland-scanner", "private-code", xml_in_path, code_out_path },
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|