view color_game/BUILD @ 62:ea9ef388ab97

[Seobeo] Fixed issues with epoll or kqeue in different threads. Initizlied the event looop inside of the thread itself.
author June Park <parkjune1995@gmail.com>
date Tue, 23 Dec 2025 11:48:11 -0800
parents 9df5587cf23b
children 75de5903355c
line wrap: on
line source

load("//third_party/raylib:raylib.bzl", "raylib_binary")

raylib_binary(
  name = "main",
  srcs = ["main.c"],
  deps = [
    "//third_party/raylib:raylib",
    # "//dowa:dowa", // TODO Fix for windows
  ],
  static = True
)