view third_party/raylib/BUILD @ 36:84672efec192

[Zenbu] WIP fixing issues regarding to using edge only. I think there is a problem where socket closes before sending back the info.
author MrJuneJune <me@mrjunejune.com>
date Sun, 09 Nov 2025 06:25:16 -0800
parents f33d9ff8b6e8
children 9df5587cf23b
line wrap: on
line source

alias(
  name = "raylib",
  actual = select({
    "//config:macos": "//third_party/raylib/raylib-5.5_macos:raylib_mac",
    "//config:linux": "//third_party/raylib/raylib-5.5_linux_amd64:raylib_linux",
  }),
  visibility = ["//visibility:public"],
)

filegroup(
  name = "raylib_hdrs",
  srcs = glob(["include/**"]),
  visibility = ["//visibility:public"],
)