ghostty/pkg/opengl/build.zig
2023-11-17 21:51:04 -08:00

6 lines
143 B
Zig

const std = @import("std");
pub fn build(b: *std.Build) !void {
_ = b.addModule("opengl", .{ .source_file = .{ .path = "main.zig" } });
}