You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
340 B
22 lines
340 B
licenses(["notice"])
|
|
|
|
exports_files(["LICENSE.txt"])
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
cc_library(
|
|
name = "nanopb",
|
|
visibility = ["//visibility:public"],
|
|
hdrs = [
|
|
"pb.h",
|
|
"pb_common.h",
|
|
"pb_decode.h",
|
|
"pb_encode.h",
|
|
],
|
|
srcs = [
|
|
"pb_common.c",
|
|
"pb_decode.c",
|
|
"pb_encode.c",
|
|
],
|
|
)
|