Skip to content

dxyinme/bazel_crc32c

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CRC32C build in bazel

author: dxyinme

you can use it like this

# in workspace
git_repository(
    name = "com_github_dxyinme_crc32c",
    remote = "https://github.com/dxyinme/bazel_crc32c.git",
    tag = "v1.0",
)

# in use
cc_binary(
  name = "crc32c_example",
  srcs = [
    "crc32c_example.cc",
  ],
  deps = [
    "@com_github_dxyinme_crc32c//:crc32c"
  ],
)