xref: /aosp_15_r20/external/google-fruit/examples/server/BUILD (revision a65addddcf69f38db5b288d787b6b7571a57bb8f)
1
2licenses(["notice"])
3
4cc_binary(
5    name = "server",
6    srcs = glob([
7        "*.cpp",
8        "*.h",
9    ]),
10    linkopts = ["-pthread"],
11    deps = ["//third_party/fruit"],
12)
13