mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-04-21 17:08:36 +03:00
7 lines
218 B
Zig
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"));
|
|
}
|