mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-14 15:56:13 +03:00
7 lines
228 B
Zig
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" });
|
|
}
|