mirror of
https://github.com/ghostty-org/ghostty.git
synced 2026-07-26 02:31:55 +00:00
6 lines
148 B
Zig
6 lines
148 B
Zig
const std = @import("std");
|
|
|
|
pub fn build(b: *std.Build) !void {
|
|
_ = b.addModule("opengl", .{ .root_source_file = .{ .path = "main.zig" } });
|
|
}
|