Skip to content

Commit

Permalink
Even more messing with bazel
Browse files Browse the repository at this point in the history
  • Loading branch information
PJK committed Dec 26, 2022
1 parent cae553c commit c1032ce
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions examples/bazel/third_party/libcbor.BUILD
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
cc_library(
name = "cbor",
srcs = glob([
"src/**/*.h",
"src/**/*.c",
"src/**/*.h",
"src/**/*.c",
]),
deps = [
"@libcbor_bazel_example//third_party/libcbor:config",
],
hdrs = [
"cbor.h",
],
"cbor.h",
] + glob([
"cbor/*.h",
]),
includes = [
"src",
"src/cbor",
"src/cbor/internal",
"src",
"src/cbor",
"src/cbor/internal",
],
visibility = ["//visibility:public"],
deps = [
"@libcbor_bazel_example//third_party/libcbor:config",
],
)

0 comments on commit c1032ce

Please sign in to comment.