Release 1.0.14

This commit is contained in:
xeon
2026-02-02 21:42:18 +03:00
commit 099e86da01
10 changed files with 765 additions and 0 deletions

20
build.zig Normal file
View File

@@ -0,0 +1,20 @@
const std = @import("std");
pub fn build(b: *std.Build) void {
const optimize = b.standardOptimizeOption(.{});
const target = b.standardTargetOptions(
.{ .default_target = .{ .os_tag = .windows } },
);
const dll = b.addLibrary(.{
.name = "gfsdk",
.linkage = .dynamic,
.root_module = b.createModule(.{
.root_source_file = b.path("src/root.zig"),
.target = target,
.optimize = optimize,
}),
});
b.installArtifact(dll);
}