From 0280306d7fb9e78a57f5e1c4848bfbbbba3847d9 Mon Sep 17 00:00:00 2001 From: Jason Zaugg Date: Wed, 19 Dec 2012 15:59:07 +0100 Subject: Add SBT build, .gitignore. --- build.sbt | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 build.sbt (limited to 'build.sbt') 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 -- cgit v1.2.3