implement greedy meshing

This commit is contained in:
catAngent 2024-09-15 21:25:30 +01:00
parent 5cf2933210
commit 5c7f996eb6
4 changed files with 103 additions and 148 deletions

View file

@ -37,6 +37,8 @@ pub fn build(b: *std.Build) void {
.optimize = optimize,
});
exe_unit_tests.linkLibrary(rl.artifact("raylib"));
const run_exe_unit_tests = b.addRunArtifact(exe_unit_tests);
const test_step = b.step("test", "Run unit tests");