about summary refs log blame commit diff
path: root/third_party/bazel/rules_haskell/tests/library-with-includes/BUILD.bazel
blob: 37b5a2ee986e98e6b754472359a8b50a490d4d5b (plain) (tree)




























                                                   
load(
    "@io_tweag_rules_haskell//haskell:haskell.bzl",
    "haskell_library",
)

package(default_testonly = 1)

genrule(
    name = "gen-a",
    outs = ["a.h"],
    cmd = "echo '#define A 42' >> $@",
)

cc_library(
    name = "clib",
    hdrs = [
        "b.h",
        ":gen-a",
    ],
)

haskell_library(
    name = "library-with-includes",
    srcs = ["Lib.hs"],
    deps = [
        ":clib",
        "//tests/hackage:base",
    ],
)