aboutsummaryrefslogtreecommitdiff
path: root/plugins/essentials/build/build.scala
blob: eef49219ef65e7a89add8e9de409a23b35df0003 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import cbt._
// TODO: maybe move this back into stage2 to avoid having to call zinc separately for this as a plugin
// and to avoid the special casing "BuildBuildWithoutEssentials"
class Build(val context: Context) extends BaseBuild{
  override def dependencies = (
    super.dependencies
    :+ context.cbtDependency
    :+ DirectoryDependency( context.cbtHome ++ "/libraries/eval" )
  )
}