ghostty/pkg/opengl/build.zig
2024-01-07 19:07:16 +01:00

7 lines
228 B
Zig

const std = @import("std");
pub fn build(b: *std.Build) !void {
const module = b.addModule("opengl", .{ .root_source_file = .{ .path = "main.zig" } });
module.addIncludePath(.{ .path = "../../vendor/glad/include" });
}