Mercurial
comparison 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 |
comparison
equal
deleted
inserted
replaced
| 0:5695ef413be0 | 1:adcfad6e86fb |
|---|---|
| 1 load("@rules_cc//cc:cc_binary.bzl", "cc_binary") | |
| 2 | |
| 3 alias( | |
| 4 name = "playground", | |
| 5 actual = select({ | |
| 6 "@platforms//os:osx": ":playground_osx", | |
| 7 }) | |
| 8 ) | |
| 9 | |
| 10 cc_binary( | |
| 11 name = "playground_osx", | |
| 12 srcs = ["main.c"], | |
| 13 deps = [], | |
| 14 ) |