summaryrefslogtreecommitdiff
path: root/willow/BUILD.bazel
diff options
context:
space:
mode:
Diffstat (limited to 'willow/BUILD.bazel')
-rw-r--r--willow/BUILD.bazel13
1 files changed, 13 insertions, 0 deletions
diff --git a/willow/BUILD.bazel b/willow/BUILD.bazel
new file mode 100644
index 0000000..8726cbd
--- /dev/null
+++ b/willow/BUILD.bazel
@@ -0,0 +1,13 @@
+cc_library(
+ name = "willow",
+ srcs = [
+ "lib/IR/TypeContext.cpp",
+ ],
+ hdrs = glob([
+ "include/willow/**/*.h",
+ ]),
+ strip_include_prefix = "include",
+ visibility = ["//visibility:public"],
+ deps = [
+ ],
+)