Rename render.[hc] to bindings.[hc]

This commit is contained in:
Isaac Freund
2020-04-15 12:47:55 +02:00
parent 2126ef07f8
commit b02f660475
4 changed files with 6 additions and 5 deletions

View File

@ -38,7 +38,7 @@ fn addDeps(exe: *std.build.LibExeObjStep, protocol_step: *std.build.Step) void {
exe.step.dependOn(protocol_step);
exe.addIncludeDir("protocol");
exe.addCSourceFile("include/render.c", &[_][]const u8{"-std=c99"});
exe.addCSourceFile("include/bindings.c", &[_][]const u8{"-std=c99"});
exe.addIncludeDir(".");
exe.linkLibC();