aboutsummaryrefslogtreecommitdiff
path: root/examples/kindprojector-example/build/build.scala
blob: e5ad8b4e8281eb968cb5406936e8eb8e9b4e0e90 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
package kindprojector_example_build

import cbt._

class Build(val context: Context) extends BaseBuild with KindProjectorPlugin {

  override def scalacOptions: Seq[String] =
    super.scalacOptions ++
    Seq("-language:higherKinds")

}