Mercurial
view postdog/BUILD @ 72:4532ce6d9eb8
[Seobeo] Added router to the server logic. Few dowa string manipulation logics.
| author | June Park <parkjune1995@gmail.com> |
|---|---|
| date | Mon, 29 Dec 2025 07:50:07 -0800 |
| parents | 75de5903355c |
| children | 48f260576059 |
line wrap: on
line source
load("//third_party/raylib:raylib.bzl", "raylib_binary") load("//gui_ze:gui_ze.bzl", "macos_app_and_dmg") raylib_binary( name = "postdog", srcs = ["main.c"], deps = [ "//third_party/raylib:raylib", ], linkopts_macos = [ "-framework CoreVideo", "-framework IOKit", "-framework Cocoa", "-framework GLUT", "-framework OpenGL", "-lcurl", ], linkopts_linux = [ "-lGL", "-lm", "-lpthread", "-ldl", "-lrt", "-lX11", ], static = True ) macos_app_and_dmg( name = "postdog_bundle", binary = ":postdog", bundle_id = "com.june.postdog" )