aboutsummaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
authorGuillaume Martres <smarter@ubuntu.com>2017-03-24 15:32:09 +0100
committerGuillaume Martres <smarter@ubuntu.com>2017-03-24 19:15:42 +0100
commit70c072abc729c1ffc080baff68dfd8fd6db1bcd1 (patch)
tree2f2435219254ccbfda61f55a549730fc47dc954e /build.sbt
parentd9f98c2848dbb0ae18ae75159761598fdac894c3 (diff)
downloaddotty-70c072abc729c1ffc080baff68dfd8fd6db1bcd1.tar.gz
dotty-70c072abc729c1ffc080baff68dfd8fd6db1bcd1.tar.bz2
dotty-70c072abc729c1ffc080baff68dfd8fd6db1bcd1.zip
Switch to build.sbt
Using the same technique than scala-js where we just forward to Build.scala: https://github.com/scala-js/scala-js/pull/2312
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt19
1 files changed, 19 insertions, 0 deletions
diff --git a/build.sbt b/build.sbt
new file mode 100644
index 000000000..8f3754e57
--- /dev/null
+++ b/build.sbt
@@ -0,0 +1,19 @@
+val dotty = Build.dotty
+val `dotty-bootstrapped` = Build.`dotty-bootstrapped`
+val `dotty-interfaces` = Build.`dotty-interfaces`
+val `dotty-doc` = Build.`dotty-doc`
+val `dotty-bot` = Build.`dotty-bot`
+val `dotty-compiler` = Build.`dotty-compiler`
+val `dotty-compiler-bootstrapped` = Build.`dotty-compiler-bootstrapped`
+val `dotty-bin-tests` = Build.`dotty-bin-tests`
+val `dotty-library` = Build.`dotty-library`
+val `dotty-library-bootstrapped` = Build.`dotty-library-bootstrapped`
+val `dotty-sbt-bridge` = Build.`dotty-sbt-bridge`
+val sjsSandbox = Build.sjsSandbox
+val `dotty-bench` = Build.`dotty-bench`
+val `scala-library` = Build.`scala-library`
+val `scala-compiler` = Build.`scala-compiler`
+val `scala-reflect` = Build.`scala-reflect`
+val scalap = Build.scalap
+
+inThisBuild(Build.thisBuildSettings)