summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorRay <[email protected]>2024-04-01 18:01:02 +0200
committerRay <[email protected]>2024-04-01 18:01:02 +0200
commitfdf9ac66dadabae0c3ce1dd40d5d6b9510c3b7cc (patch)
treea99e3cf1a6c37804bfbb0c9cba3b1587dce700c9 /src
parent3b353da3ab8742c5a2cf386bc96989d4a1fdc2dd (diff)
parentd3744570405976e33e2a6cfd7aceda3a30c5e000 (diff)
downloadraylib-fdf9ac66dadabae0c3ce1dd40d5d6b9510c3b7cc.tar.gz
raylib-fdf9ac66dadabae0c3ce1dd40d5d6b9510c3b7cc.zip
Merge branch 'master' of https://github.com/raysan5/raylib
Diffstat (limited to 'src')
-rw-r--r--src/build.zig55
1 files changed, 54 insertions, 1 deletions
diff --git a/src/build.zig b/src/build.zig
index ed9013ac..93ffe47a 100644
--- a/src/build.zig
+++ b/src/build.zig
@@ -115,10 +115,34 @@ pub fn addRaylib(b: *std.Build, target: anytype, optimize: std.builtin.OptimizeM
raylib.linkSystemLibrary("rt");
raylib.linkSystemLibrary("dl");
raylib.linkSystemLibrary("m");
- raylib.linkSystemLibrary("X11");
+
raylib.addLibraryPath(.{ .path = "/usr/lib" });
raylib.addIncludePath(.{ .path = "/usr/include" });
+ switch (options.linux_display_backend) {
+ .X11 => {
+ raylib.defineCMacro("_GLFW_X11", null);
+ raylib.linkSystemLibrary("X11");
+ },
+ .Wayland => {
+ raylib.defineCMacro("_GLFW_WAYLAND", null);
+ raylib.linkSystemLibrary("wayland-client");
+ raylib.linkSystemLibrary("wayland-cursor");
+ raylib.linkSystemLibrary("wayland-egl");
+ raylib.linkSystemLibrary("xkbcommon");
+ raylib.addIncludePath(.{ .path = srcdir });
+ try waylandGenerate(gpa, "wayland.xml", "wayland-client-protocol");
+ try waylandGenerate(gpa, "xdg-shell.xml", "xdg-shell-client-protocol");
+ try waylandGenerate(gpa, "xdg-decoration-unstable-v1.xml", "xdg-decoration-unstable-v1-client-protocol");
+ try waylandGenerate(gpa, "viewporter.xml", "viewporter-client-protocol");
+ try waylandGenerate(gpa, "relative-pointer-unstable-v1.xml", "relative-pointer-unstable-v1-client-protocol");
+ try waylandGenerate(gpa, "pointer-constraints-unstable-v1.xml", "pointer-constraints-unstable-v1-client-protocol");
+ try waylandGenerate(gpa, "fractional-scale-v1.xml", "fractional-scale-v1-client-protocol");
+ try waylandGenerate(gpa, "xdg-activation-v1.xml", "xdg-activation-v1-client-protocol");
+ try waylandGenerate(gpa, "idle-inhibit-unstable-v1.xml", "idle-inhibit-unstable-v1-client-protocol");
+ },
+ }
+
raylib.defineCMacro("PLATFORM_DESKTOP", null);
} else {
raylib.linkSystemLibrary("GLESv2");
@@ -201,6 +225,12 @@ pub const Options = struct {
raygui: bool = false,
platform_drm: bool = false,
shared: bool = false,
+ linux_display_backend: LinuxDisplayBackend = .X11,
+};
+
+pub const LinuxDisplayBackend = enum {
+ X11,
+ Wayland,
};
pub fn build(b: *std.Build) !void {
@@ -245,6 +275,8 @@ const srcdir = struct {
}
}.getSrcDir();
+const waylandDir = srcdir ++ "/external/glfw/deps/wayland";
+
fn getOsTagVersioned(target: anytype) std.Target.Os.Tag {
if (comptime builtin.zig_version.minor >= 12) {
return target.result.os.tag;
@@ -273,6 +305,27 @@ fn addCSourceFilesVersioned(
}
}
+fn waylandGenerate(allocator: std.mem.Allocator, comptime protocol: []const u8, comptime basename: []const u8) !void {
+ _ = try std.process.Child.run(.{
+ .allocator = allocator,
+ .argv = &[_][]const u8{
+ "wayland-scanner",
+ "client-header",
+ waylandDir ++ "/" ++ protocol,
+ srcdir ++ "/" ++ basename ++ ".h",
+ },
+ });
+ _ = try std.process.Child.run(.{
+ .allocator = allocator,
+ .argv = &[_][]const u8{
+ "wayland-scanner",
+ "private-code",
+ waylandDir ++ "/" ++ protocol,
+ srcdir ++ "/" ++ basename ++ "-code.h",
+ },
+ });
+}
+
fn join2(allocator: std.mem.Allocator, path1: []const u8, path2: []const u8) ![]u8 {
const joinedPath = try std.fs.path.join(allocator, &[_][]const u8{ path1, path2 });
return joinedPath;