Mercurial
diff playground/BUILD @ 1:adcfad6e86fb
Updated naming and separated out some logic within seobeo.
| author | June Park <parkjune1995@gmail.com> |
|---|---|
| date | Wed, 24 Sep 2025 09:11:20 -0700 |
| parents | |
| children | de54585a40f1 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/playground/BUILD Wed Sep 24 09:11:20 2025 -0700 @@ -0,0 +1,14 @@ +load("@rules_cc//cc:cc_binary.bzl", "cc_binary") + +alias( + name = "playground", + actual = select({ + "@platforms//os:osx": ":playground_osx", + }) +) + +cc_binary( + name = "playground_osx", + srcs = ["main.c"], + deps = [], +)