chokobole / felicia-zed

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Felicia Zed

Prerequisites

Follow the instruction at Installation Guide.

WORKSPACE setup

bind(
    name = "felicia",
    actual = "@com_github_chokobole_felicia//felicia:felicia",
)

bind(
    name = "felicia_zed",
    actual = "@com_github_chokobole_felicia_zed//:zed",
)

git_repository(
    name = "com_github_chokobole_felicia",
    remote = "https://github.com/chokobole/felicia.git",
    commit = "<commit>",
)

git_repository(
    name = "com_github_chokobole_felicia_zed",
    remote = "https://github.com/chokobole/felicia-zed.git",
    commit = "<commit>",
)

load("@com_github_chokobole_felicia//bazel:felicia_deps.bzl", "felicia_deps")

felicia_deps()

load("@com_github_chokobole_felicia_zed//:zed_deps.bzl", "zed_deps")

zed_deps()

Example

load("@com_github_chokobole_felicia//bazel:felicia_cc.bzl", "fel_cc_native_binary")

fel_cc_native_binary(
    name = "<name>",
    ...,
    deps = [
        "//external:felicia_zed",
    ],
)

Check out examples here.

About

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:C++ 94.2%Language:Python 5.8%