removed all c code
All checks were successful
Verify build / verify_build (push) Successful in 1m9s

This commit is contained in:
k
2025-10-27 13:54:27 -04:00
parent 775228d691
commit a7c9f4f472
12 changed files with 84 additions and 713 deletions

View File

@@ -11,13 +11,6 @@ pub fn build(b: *std.Build) void {
});
const exe = b.addExecutable(.{ .name = "RatChess", .root_module = exe_mod });
exe.linkLibC();
exe.addIncludePath(b.path("headers/"));
exe.addCSourceFile(.{ .file = b.path("src/eval.c") });
exe.addCSourceFile(.{ .file = b.path("src/help.c") });
exe.addCSourceFile(.{ .file = b.path("src/main.c") });
exe.addCSourceFile(.{ .file = b.path("src/moves.c") });
b.installArtifact(exe);
const run_cmd = b.addRunArtifact(exe);