blob: f472053edcb3649799a4728b54fd636a56a6bacb (
plain)
1
2
3
4
5
6
|
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"));
}
|