Mercurial
diff postdog/BUILD @ 116:7bd795bac997
[Postdog] Added scrollable area to inputs and history files, buttons to delete and view.
| author | June Park <parkjune1995@gmail.com> |
|---|---|
| date | Wed, 07 Jan 2026 04:52:17 -0800 |
| parents | e2a73e64e8e6 |
| children | 7387eec8e7f8 |
line wrap: on
line diff
--- a/postdog/BUILD Tue Jan 06 08:19:07 2026 -0800 +++ b/postdog/BUILD Wed Jan 07 04:52:17 2026 -0800 @@ -2,6 +2,18 @@ load("//gui_ze:gui_ze.bzl", "macos_app_and_dmg") raylib_binary( + name = "slider_example", + srcs = [ + "slider_example.c", + "gui_window_file_dialog.h", + ], + deps = [ + "//third_party/raylib:raylib", + "//dowa:dowa", + ], +) + +raylib_binary( name = "postdog", srcs = [ "main.c", @@ -42,5 +54,6 @@ srcs = glob([ "**/*.ttf", "**/*.txt", + "**/*.png", ], allow_empty=True) )