llvm/utils/bazel/llvm-project-overlay/mlir/examples/toy/Ch1/BUILD.bazel

# Description:
#   MLIR Tutorial
licenses(["notice"])

package(default_visibility = ["//visibility:public"])

cc_binary(
    name = "toyc-ch1",
    srcs = [
        "parser/AST.cpp",
        "toyc.cpp",
    ] + glob(["include/toy/*"]),
    includes = ["include/"],
    deps = [
        "//llvm:Support",
        "//mlir:Support",
    ],
)