Mercurial
diff third_party/raylib/BUILD @ 173:827c6ac504cd hg-web
Merged in default here.
| author | MrJuneJune <me@mrjunejune.com> |
|---|---|
| date | Mon, 19 Jan 2026 18:59:10 -0800 |
| parents | 87d8d3eb3491 |
| children | 94705b5986b3 |
line wrap: on
line diff
--- a/third_party/raylib/BUILD Sat Jan 10 13:35:09 2026 -0800 +++ b/third_party/raylib/BUILD Mon Jan 19 18:59:10 2026 -0800 @@ -1,3 +1,5 @@ +load("@rules_cc//cc:cc_library.bzl", "cc_library") + alias( name = "raylib", actual = select({ @@ -13,3 +15,13 @@ srcs = glob(["include/**"]), visibility = ["//visibility:public"], ) + +cc_library( + name = "raylib_custom_ui", + srcs = ["custom.c"], + hdrs = ["custom.h"], + deps = [":raylib", "//dowa:dowa"], + visibility = ["//visibility:public"], +) + +