Mercurial
comparison 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 |
comparison
equal
deleted
inserted
replaced
| 115:96db6c3f38d6 | 116:7bd795bac997 |
|---|---|
| 1 load("//third_party/raylib:raylib.bzl", "raylib_binary") | 1 load("//third_party/raylib:raylib.bzl", "raylib_binary") |
| 2 load("//gui_ze:gui_ze.bzl", "macos_app_and_dmg") | 2 load("//gui_ze:gui_ze.bzl", "macos_app_and_dmg") |
| 3 | |
| 4 raylib_binary( | |
| 5 name = "slider_example", | |
| 6 srcs = [ | |
| 7 "slider_example.c", | |
| 8 "gui_window_file_dialog.h", | |
| 9 ], | |
| 10 deps = [ | |
| 11 "//third_party/raylib:raylib", | |
| 12 "//dowa:dowa", | |
| 13 ], | |
| 14 ) | |
| 3 | 15 |
| 4 raylib_binary( | 16 raylib_binary( |
| 5 name = "postdog", | 17 name = "postdog", |
| 6 srcs = [ | 18 srcs = [ |
| 7 "main.c", | 19 "main.c", |
| 40 filegroup( | 52 filegroup( |
| 41 name = "all_static_assets", | 53 name = "all_static_assets", |
| 42 srcs = glob([ | 54 srcs = glob([ |
| 43 "**/*.ttf", | 55 "**/*.ttf", |
| 44 "**/*.txt", | 56 "**/*.txt", |
| 57 "**/*.png", | |
| 45 ], allow_empty=True) | 58 ], allow_empty=True) |
| 46 ) | 59 ) |