aboutsummaryrefslogtreecommitdiff
path: root/stage2/BuildBuild.scala
diff options
context:
space:
mode:
authorChristopher Vogt <oss.nsp@cvogt.org>2017-03-11 13:27:24 -0500
committerChristopher Vogt <oss.nsp@cvogt.org>2017-03-11 13:27:24 -0500
commitf890b14098a588fb4e016afc6932edf89f8ef1f7 (patch)
tree6ea3269fdfadab3ac4317ed67dfb3c2e07ac3c87 /stage2/BuildBuild.scala
parente760ee9e4c4c3b3f39e2bb2dfd47d2b142e12a53 (diff)
downloadcbt-f890b14098a588fb4e016afc6932edf89f8ef1f7.tar.gz
cbt-f890b14098a588fb4e016afc6932edf89f8ef1f7.tar.bz2
cbt-f890b14098a588fb4e016afc6932edf89f8ef1f7.zip
extract re-usable parts of cbt’s own build into Shared plugin
Diffstat (limited to 'stage2/BuildBuild.scala')
-rw-r--r--stage2/BuildBuild.scala7
1 files changed, 7 insertions, 0 deletions
diff --git a/stage2/BuildBuild.scala b/stage2/BuildBuild.scala
index c312df9..d778049 100644
--- a/stage2/BuildBuild.scala
+++ b/stage2/BuildBuild.scala
@@ -116,3 +116,10 @@ trait BuildBuildWithoutEssentials extends BaseBuild{
if( c == p ) this else managedBuild.finalBuild( current )
}
}
+
+trait CbtInternal extends BuildBuild{
+ protected object cbtInternal{
+ def shared = DirectoryDependency(context.cbtHome / "/internal/plugins/shared")
+ def library = DirectoryDependency(context.cbtHome / "/internal/plugins/library")
+ }
+}