aboutsummaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2012-12-19 15:59:07 +0100
committerJason Zaugg <jzaugg@gmail.com>2013-02-10 15:10:31 +0100
commit0280306d7fb9e78a57f5e1c4848bfbbbba3847d9 (patch)
treebfdf9b54d10fe6800a9020e06ab243b0f1e9553b /build.sbt
parent25e09861e097b8db659ba1fc2d103e540db86a22 (diff)
downloaddotty-0280306d7fb9e78a57f5e1c4848bfbbbba3847d9.tar.gz
dotty-0280306d7fb9e78a57f5e1c4848bfbbbba3847d9.tar.bz2
dotty-0280306d7fb9e78a57f5e1c4848bfbbbba3847d9.zip
Add SBT build, .gitignore.
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