initial commit.

This commit is contained in:
Jackson Netherwood-Imig
2026-01-17 20:02:37 -08:00
commit 464ab3a473
4 changed files with 340 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
const std = @import("std");
pub fn build(b: *std.Build) void {
const target = b.standardTargetOptions(.{});
const optimize = b.standardOptimizeOption(.{});
_ = b.addModule("drm_fourcc", .{
.target = target,
.optimize = optimize,
.root_source_file = b.path("drm_fourcc.zig"),
});
}