freebsd-dev/contrib/libcbor/examples/bazel/WORKSPACE
Ed Maste 5d3e7166f6 libcbor: update to 0.10.2
Sponsored by:	The FreeBSD Foundation
2023-04-21 16:10:03 -04:00

20 lines
499 B
Python

workspace(name = "libcbor_bazel_example")
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
# Google Test
http_archive(
name = "gtest",
sha256 = "94c634d499558a76fa649edb13721dce6e98fb1e7018dfaeba3cd7a083945e91",
strip_prefix = "googletest-release-1.10.0",
url = "https://github.com/google/googletest/archive/release-1.10.0.zip",
)
# libcbor
new_local_repository(
name = "libcbor",
build_file = "//third_party:libcbor.BUILD",
path = "../../src",
)