mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-11-30 06:52:55 +01:00
8472f27ec5
GitOrigin-RevId: ddf02e70d2827c048db49b687ebbcdcc67807ca6
12 lines
211 B
Plaintext
12 lines
211 B
Plaintext
load("@rules_cc//cc:defs.bzl", "cc_library")
|
|
|
|
cc_library(
|
|
name = "lz4",
|
|
srcs = glob([
|
|
"**/*.c",
|
|
"**/*.h",
|
|
]),
|
|
hdrs = glob(["**/*.h"]),
|
|
visibility = ["//visibility:public"],
|
|
)
|