Big vecmath package

This commit is contained in:
2026-01-02 00:06:30 +01:00
parent 3ac7f5654d
commit fd16e5a2b0
9 changed files with 2691 additions and 244 deletions

View File

@@ -1,7 +1,11 @@
const std = @import("std");
pub fn build(b: *std.Build) void {
_ = b.addModule("media", .{
const vm_dep = b.dependency("vecmath", .{});
const vm_module = vm_dep.module("vecmath");
const root_module = b.addModule("media", .{
.root_source_file = b.path("src/root.zig"),
});
root_module.addImport("vecmath", vm_module);
}