ghostty/pkg/opengl/build.zig
2024-06-24 15:16:22 -07:00

7 lines
218 B
Zig

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