initial commit.
This commit is contained in:
@@ -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"),
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user