Is there any way of improving the compilation times for zig?
even after adding little changes to my code i have to wait 5-10s
exe.linkLibC();
exe.addIncludePath(b.path("src/vendors"));
exe.addCSourceFiles(.{ .root = b.path("src/vendors"), .files = &.{"glad.c"} });
exe.linkSystemLibrary("gl");
exe.linkSystemLibrary("glfw");