Mercurial
comparison seobeo/BUILD @ 0:5695ef413be0
Initialized mono repo with bazels with few examples.
| author | June Park <parkjune1995@gmail.com> |
|---|---|
| date | Tue, 23 Sep 2025 10:05:25 -0700 |
| parents | |
| children | adcfad6e86fb |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:5695ef413be0 |
|---|---|
| 1 load("@rules_cc//cc:cc_binary.bzl", "cc_binary") | |
| 2 | |
| 3 alias( | |
| 4 name = "seobeo", | |
| 5 actual = select({ | |
| 6 "@platforms//os:osx": ":seobeo_mac", | |
| 7 }) | |
| 8 ) | |
| 9 | |
| 10 cc_binary( | |
| 11 name = "seobeo_mac", | |
| 12 srcs = ["main.c"], | |
| 13 deps = [], | |
| 14 target_compatible_with = [ | |
| 15 "@platforms//os:osx", | |
| 16 ], | |
| 17 ) |