view postdog/BUILD @ 55:0dcfbf5ba997

Remvoing unneeded bzl rules.
author June Park <parkjune1995@gmail.com>
date Fri, 19 Dec 2025 13:59:11 -0800
parents b3e82d22f961
children ccb42d5bf8fd
line wrap: on
line source

load("//third_party/raylib:raylib.bzl", "raylib_binary")

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",
    "-lcurl",
  ],
)