Skip to content
Snippets Groups Projects
Commit 0198210f authored by Petteri Aimonen's avatar Petteri Aimonen Committed by GitHub
Browse files

Merge pull request #209 from LuminateWireless/bazel-build

Add bazel BUILD file for nanopb.
parents 298d00e8 4e340428
No related branches found
No related tags found
No related merge requests found
BUILD 0 → 100644
licenses(["notice"])
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",
],
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment