aboutsummaryrefslogtreecommitdiff
path: root/build.zig.zon
diff options
context:
space:
mode:
authorYaroslav de la Peña Smirnov <yps@yaroslavps.com>2024-09-07 21:10:38 +0300
committerYaroslav de la Peña Smirnov <yps@yaroslavps.com>2024-09-07 21:10:38 +0300
commit31b331a3a53884b41926bd6fee5dbc3505e8acde (patch)
tree1c7b3987073b92e70a017895ca2ba2f34f8e1fc6 /build.zig.zon
downloadzigway-31b331a3a53884b41926bd6fee5dbc3505e8acde.tar.gz
zigway-31b331a3a53884b41926bd6fee5dbc3505e8acde.zip
init: zig wayland hello world client
Adapted the example from chapters 7 and 8 of the Wayland book (https://wayland-book.com/) into Zig.
Diffstat (limited to 'build.zig.zon')
-rw-r--r--build.zig.zon18
1 files changed, 18 insertions, 0 deletions
diff --git a/build.zig.zon b/build.zig.zon
new file mode 100644
index 0000000..925fe00
--- /dev/null
+++ b/build.zig.zon
@@ -0,0 +1,18 @@
+.{
+ .name = "hello-wl",
+ .version = "0.0.0",
+ //.minimum_zig_version = "0.11.0",
+ .dependencies = .{
+ .@"zig-wayland" = .{
+ .url = "https://codeberg.org/ifreund/zig-wayland/archive/v0.2.0.tar.gz",
+ .hash = "1220687c8c47a48ba285d26a05600f8700d37fc637e223ced3aa8324f3650bf52242",
+ },
+ },
+ .paths = .{
+ "build.zig",
+ "build.zig.zon",
+ "src",
+ //"LICENSE",
+ //"README.md",
+ },
+}