39 lines
915 B
Zig
39 lines
915 B
Zig
const std = @import("std");
|
|
|
|
pub fn build(b: *std.Build) void {
|
|
const target = b.standardTargetOptions(.{});
|
|
|
|
const vm_dep = b.dependency("vecmath", .{
|
|
.target = target,
|
|
});
|
|
const vm_mod = vm_dep.module("vecmath");
|
|
|
|
const mod = b.addModule("media", .{
|
|
.root_source_file = b.path("src/root.zig"),
|
|
.target = target,
|
|
.link_libc = true,
|
|
.imports = &.{
|
|
.{ .name = "vecmath", .module = vm_mod },
|
|
},
|
|
});
|
|
|
|
mod.addCSourceFile(.{
|
|
.file = b.path("src/stbi/stb_image.c"),
|
|
.flags = &.{
|
|
"-std=c17",
|
|
"-Wall",
|
|
"-Wextra",
|
|
},
|
|
.language = .c,
|
|
});
|
|
|
|
const mod_tests = b.addTest(.{
|
|
.root_module = mod,
|
|
});
|
|
|
|
const run_mod_tests = b.addRunArtifact(mod_tests);
|
|
|
|
const test_step = b.step("test", "Run tests");
|
|
test_step.dependOn(&run_mod_tests.step);
|
|
}
|