comparison postdog/BUILD @ 58:ccb42d5bf8fd

[PostDog] Somewhat working copy. That would use for testing.
author June Park <parkjune1995@gmail.com>
date Sat, 20 Dec 2025 09:33:15 -0800
parents b3e82d22f961
children 75de5903355c
comparison
equal deleted inserted replaced
57:d4cdb87212fb 58:ccb42d5bf8fd
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 3
3 raylib_binary( 4 raylib_binary(
4 name = "postdog", 5 name = "postdog",
5 srcs = ["main.c"], 6 srcs = ["main.c"],
6 deps = [ 7 deps = [
21 "-ldl", 22 "-ldl",
22 "-lrt", 23 "-lrt",
23 "-lX11", 24 "-lX11",
24 "-lcurl", 25 "-lcurl",
25 ], 26 ],
27 static = True
26 ) 28 )
27 29
30 macos_app_and_dmg(
31 name = "postdog_bundle",
32 binary = ":postdog",
33 bundle_id = "com.june.postdog"
34 )
35