aboutsummaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2012-11-23 15:58:13 +0100
committerJason Zaugg <jzaugg@gmail.com>2012-11-23 17:28:19 +0100
commit4c1c9fcf075d6e1e5975a04c5a2ced674716069a (patch)
tree3b507edc6b3e33bafd9fe69cfbc7dbe3ff7514b9 /build.sbt
parent8658394b2cbd70db4fcb9048c347bb6b6c4db628 (diff)
downloadscala-async-4c1c9fcf075d6e1e5975a04c5a2ced674716069a.tar.gz
scala-async-4c1c9fcf075d6e1e5975a04c5a2ced674716069a.tar.bz2
scala-async-4c1c9fcf075d6e1e5975a04c5a2ced674716069a.zip
Fix #31, Unfinished ANF transform
Prepend {(); ... } before starting the ANF transform. Add tracing to the anf/inline transform. Also enables and addresses SIP-18 warnings.
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt4
1 files changed, 2 insertions, 2 deletions
diff --git a/build.sbt b/build.sbt
index ba0544b..9b0a6bd 100644
--- a/build.sbt
+++ b/build.sbt
@@ -30,9 +30,9 @@ libraryDependencies <<= (scalaVersion, libraryDependencies) {
scalacOptions += "-P:continuations:enable"
-scalacOptions ++= Seq("-deprecation", "-unchecked", "-Xlint")
+scalacOptions ++= Seq("-deprecation", "-unchecked", "-Xlint", "-feature")
-description := "An asynchronous programminig facility for Scala, in the spirit of C# await/async"
+description := "An asynchronous programming facility for Scala, in the spirit of C# await/async"
homepage := Some(url("http://github.com/phaller/scala-async"))