zig-15: build binary builds

This commit is contained in:
Mitchell Hashimoto
2025-09-30 12:24:03 -07:00
parent f11a4f7a68
commit f1ce381ec8
35 changed files with 221 additions and 190 deletions

View File

@@ -36,10 +36,13 @@ fn buildLib(b: *std.Build, module: *std.Build.Module, options: anytype) !*std.Bu
const optimize = options.optimize;
// Shared library
const lib = b.addSharedLibrary(.{
const lib = b.addLibrary(.{
.name = "gtk4-layer-shell",
.target = target,
.optimize = optimize,
.linkage = .dynamic,
.root_module = b.createModule(.{
.target = target,
.optimize = optimize,
}),
});
b.installArtifact(lib);