aboutsummaryrefslogtreecommitdiff
path: root/core/BUILD
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <code@mail.matthias.benkard.de>2018-01-28 18:40:54 +0100
committerMatthias Andreas Benkard <code@mail.matthias.benkard.de>2018-01-28 18:40:54 +0100
commit81f26d944027fc9f6bb26d5009d3142b841e6cd2 (patch)
tree2bd959f169a1ed27a225e72dccc9fb40f74b4636 /core/BUILD
parentc84bbfbbd30b51a35fc7d0e6ca32a51ed920b2fc (diff)
Add Bazel build files.
Diffstat (limited to 'core/BUILD')
-rw-r--r--core/BUILD8
1 files changed, 8 insertions, 0 deletions
diff --git a/core/BUILD b/core/BUILD
new file mode 100644
index 0000000..a704af2
--- /dev/null
+++ b/core/BUILD
@@ -0,0 +1,8 @@
+scala_library(
+ name = "fibers_core",
+ srcs = glob(["lib/**/*.scala"]),
+ deps = ["@deps//:compile"],
+ plugins = ["@org_scala_lang_plugins_scala_continuations_plugin_2_12_2//jar"],
+ scalacopts = ["-Ywarn-unused", "-P:continuations:enable"],
+ visibility = ["//visibility:public"],
+)