Files
zig-drm/build.zig
T
Jackson Netherwood-Imig 464ab3a473 initial commit.
2026-01-17 20:02:37 -08:00

13 lines
323 B
Zig

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"),
});
}