12 lines
321 B
Zig
12 lines
321 B
Zig
const std = @import("std");
|
|
|
|
pub fn build(b: *std.Build) void {
|
|
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);
|
|
}
|