mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-13 23:36:09 +03:00
6 lines
143 B
Zig
6 lines
143 B
Zig
const std = @import("std");
|
|
|
|
pub fn build(b: *std.Build) !void {
|
|
_ = b.addModule("opengl", .{ .source_file = .{ .path = "main.zig" } });
|
|
}
|