summaryrefslogtreecommitdiff
path: root/hk21/game/BUILD.bazel
blob: b2cca0933366193e7d2ad925e4f7367ae94ebeb2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
cc_binary(
    name = "game",
    srcs = [
        "main.cpp",
        "gpu.cpp",
        "gpu.hpp",
    ],
    deps = [
        "@asl//asl",
        "@asl//asl/log",
        "@sdl3_windows//:sdl3",
        "//hk21/vulkan_loader",
    ],
)