aboutsummaryrefslogtreecommitdiff
path: root/examples/multi-project-example/sub2/build/build.scala
blob: dd5fdee8032d127ecce561dc2d8e71950bbc3ea5 (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 SharedCbtBuild{
  override def dependencies =
    super.dependencies ++ // don't forget super.dependencies here
    Seq(    
      // source dependency
      DirectoryDependency( projectDirectory.getParentFile ++ "/common" )
    )
}