mirror of
https://github.com/nexus-stc/hyperboria
synced 2025-02-08 00:26:47 +01:00
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"],
|
|
)
|