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