summaryrefslogtreecommitdiff
path: root/game/BUILD.bazel
diff options
context:
space:
mode:
Diffstat (limited to 'game/BUILD.bazel')
-rw-r--r--game/BUILD.bazel10
1 files changed, 10 insertions, 0 deletions
diff --git a/game/BUILD.bazel b/game/BUILD.bazel
new file mode 100644
index 0000000..753a77a
--- /dev/null
+++ b/game/BUILD.bazel
@@ -0,0 +1,10 @@
+cc_binary(
+ name = "game",
+ srcs = [
+ "main.cpp",
+ ],
+ deps = [
+ "@asl//asl",
+ "@sdl3_windows//:sdl3",
+ ],
+)