aboutsummaryrefslogtreecommitdiff
path: root/examples/multi-standalone-example/sub1/build/build.scala
blob: 2c39a54d94f75475ed31866af13092890be614d7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import cbt._

class Build(val context: Context) extends SharedCbtBuild{
  override def dependencies =
    super.dependencies ++ // don't forget super.dependencies here
    Seq(    
      // source dependency
      DirectoryDependency( projectDirectory.getParentFile ++ "/common" )
    )
}