MORE BAZEL. VS Code only, by the way

This commit is contained in:
2024-02-25 13:49:21 -08:00
parent e2d648b5fa
commit 3f837d7052
21 changed files with 26 additions and 129 deletions

6
game/BUILD Normal file
View File

@ -0,0 +1,6 @@
cc_library(
name = "game",
srcs = glob(["*.c"]),
hdrs = glob(["*.h"]),
visibility = ["//sdl_host:__pkg__"]
)