ghostty/pkg/opengl/build.zig
Krzysztof Wolicki 1913243c35 WIP: Update to new build module API after Zig PR #18160
Temporarily change dependency sources to forks until they update
2024-01-03 21:50:32 +01:00

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