Move device to a separate build target

This commit is contained in:
2024-02-25 16:40:33 -08:00
parent 4866226840
commit 56eaee9d08
7 changed files with 12 additions and 5 deletions

View File

@ -2,5 +2,6 @@ cc_library(
name = "game",
srcs = glob(["*.c"]),
hdrs = glob(["*.h"]),
visibility = ["//sdl_host:__pkg__"]
)
visibility = ["//visibility:public"],
deps = ["//device:device"]
)