comparison postdog/BUILD @ 114:e2a73e64e8e6

[Postdog] Got history working.
author June Park <parkjune1995@gmail.com>
date Tue, 06 Jan 2026 08:15:37 -0800
parents d6d578b49a19
children 7bd795bac997
comparison
equal deleted inserted replaced
113:7a4e942814bc 114:e2a73e64e8e6
8 ], 8 ],
9 deps = [ 9 deps = [
10 "//third_party/raylib:raylib", 10 "//third_party/raylib:raylib",
11 "//dowa:dowa", 11 "//dowa:dowa",
12 ], 12 ],
13 data = [":all_static_assets",],
13 linkopts_macos = [ 14 linkopts_macos = [
14 "-framework CoreVideo", 15 "-framework CoreVideo",
15 "-framework IOKit", 16 "-framework IOKit",
16 "-framework Cocoa", 17 "-framework Cocoa",
17 "-framework GLUT", 18 "-framework GLUT",
34 name = "postdog_bundle", 35 name = "postdog_bundle",
35 binary = ":postdog", 36 binary = ":postdog",
36 bundle_id = "com.june.postdog" 37 bundle_id = "com.june.postdog"
37 ) 38 )
38 39
40 filegroup(
41 name = "all_static_assets",
42 srcs = glob([
43 "**/*.ttf",
44 "**/*.txt",
45 ], allow_empty=True)
46 )