Mercurial
comparison postdog/BUILD @ 54:b3e82d22f961
[PostDog] Initial commit BROKEN
| author | June Park <parkjune1995@gmail.com> |
|---|---|
| date | Fri, 19 Dec 2025 13:58:52 -0800 |
| parents | |
| children | ccb42d5bf8fd |
comparison
equal
deleted
inserted
replaced
| 53:82d1fe4d4ee6 | 54:b3e82d22f961 |
|---|---|
| 1 load("//third_party/raylib:raylib.bzl", "raylib_binary") | |
| 2 | |
| 3 raylib_binary( | |
| 4 name = "postdog", | |
| 5 srcs = ["main.c"], | |
| 6 deps = [ | |
| 7 "//third_party/raylib:raylib", | |
| 8 ], | |
| 9 linkopts_macos = [ | |
| 10 "-framework CoreVideo", | |
| 11 "-framework IOKit", | |
| 12 "-framework Cocoa", | |
| 13 "-framework GLUT", | |
| 14 "-framework OpenGL", | |
| 15 "-lcurl", | |
| 16 ], | |
| 17 linkopts_linux = [ | |
| 18 "-lGL", | |
| 19 "-lm", | |
| 20 "-lpthread", | |
| 21 "-ldl", | |
| 22 "-lrt", | |
| 23 "-lX11", | |
| 24 "-lcurl", | |
| 25 ], | |
| 26 ) | |
| 27 |