Skip to content

PCL 1.13.1 v0

Compare
Choose a tag to compare
@kgreenek kgreenek released this 15 Aug 17:12
· 6 commits to main since this release
10719f0

How to Use

In your WORKSPACE file:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "rules_pcl",
    url = "https://github.com/kgreenek/rules_pcl/archive/refs/tags/pcl-1.13.1-v0.tar.gz",
    sha256 = "4af5e3bd2d17ba1431344904285749cbfc2adc780c08e75ddd7b6c8702af5982",
    strip_prefix = "rules_pcl-pcl-1.13.1-v0",
)

load("@rules_pcl//bzl:repositories.bzl", "pcl_repositories")
pcl_repositories()

# NOTE: This must be loaded after the call to pcl_repositories().
load("@rules_pcl//bzl:init_deps.bzl", "pcl_init_deps")
pcl_init_deps()

In your top-level BUILD.bazel file:

load("@rules_pcl//bzl:pcl.bzl", "pcl_config")
pcl_config()

Changes

  • Update all dependencies
  • Add pcl tests
  • Fix minor bugs