aboutsummaryrefslogtreecommitdiff
path: root/examples/multi-project-example/common/build/build/build.scala
blob: 2deaf5a2b156aa341c8aa17bd71cc1e243c3fb54 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import cbt._
// cbt:https://github.com/cvogt/cbt.git#75c32537cd8f29f9d12db37bf06ad942806f0239
class Build(val context: Context) extends BuildBuild{
  override def dependencies =
    super.dependencies ++ // don't forget super.dependencies here
    Seq(    
      // source dependency
      DirectoryDependency( projectDirectory.getParentFile.getParentFile ++ "/shared-build" )
    )
}