Port to Bazel

This commit is contained in:
2024-02-24 21:04:20 -08:00
parent 94d71bb593
commit b0aca69287
1640 changed files with 1374 additions and 623466 deletions

8
main/BUILD Normal file
View File

@ -0,0 +1,8 @@
cc_binary(
name = "game",
srcs = glob([
"*.c",
"*.h",
]),
deps = ["//sdl"],
)