Skip to content

Instantly share code, notes, and snippets.

@unok
Created January 24, 2013 16:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save unok/4624372 to your computer and use it in GitHub Desktop.
Save unok/4624372 to your computer and use it in GitHub Desktop.
-Xprint:typer の設定の仕方
import sbt._
import Keys._
import PlayProject._
object ApplicationBuild extends Build {
val appName = "todolist"
val appVersion = "1.0-SNAPSHOT"
val appDependencies = Seq(
// Add your project dependencies here,
"postgresql" % "postgresql" % "9.1-901.jdbc4"
)
val main = PlayProject(appName, appVersion, appDependencies, mainLang = SCALA).settings(
// Add your own project settings here
scalacOptions ++= Seq("-Xprint:typer")
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment