aboutsummaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt13
1 files changed, 13 insertions, 0 deletions
diff --git a/build.sbt b/build.sbt
new file mode 100644
index 000000000..8e84bd19c
--- /dev/null
+++ b/build.sbt
@@ -0,0 +1,13 @@
+name := "dotty"
+
+organization := "lamp"
+
+scalaVersion := "2.10.0"
+
+scalaSource in Compile <<= baseDirectory / "src"
+
+scalacOptions in Global ++= Seq("-feature", "-deprecation", "-language:_")
+
+libraryDependencies <+= scalaVersion ( sv => "org.scala-lang" % "scala-reflect" % sv )
+
+scalaSource in Test <<= baseDirectory / "test" \ No newline at end of file