/apple_support

Apple support for Bazel rules

Primary LanguageStarlarkApache License 2.0Apache-2.0

Apple Support for Bazel

Build Status

This repository contains helper methods that support building rules that target Apple platforms.

Quick setup

Add the following to your WORKSPACE file to add this repository as a dependency:

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

http_archive(
    name = "build_bazel_apple_support",
    sha256 = "76df040ade90836ff5543888d64616e7ba6c3a7b33b916aa3a4b68f342d1b447",
    url = "https://github.com/bazelbuild/apple_support/releases/download/0.11.0/apple_support.0.11.0.tar.gz",
)

load(
    "@build_bazel_apple_support//lib:repositories.bzl",
    "apple_support_dependencies",
)

apple_support_dependencies()