Port project/console

This commit is contained in:
Eugene Yokota 2016-03-28 14:13:45 -04:00
parent e92324ead8
commit cd0c5465d5
2 changed files with 4 additions and 10 deletions

View File

@ -0,0 +1,4 @@
lazy val root = (project in file("."))
lazy val sub1 = (project in file("sub1"))
lazy val sub2 = (project in file("sub2"))
lazy val sub3 = (project in file("sub3"))

View File

@ -1,10 +0,0 @@
import sbt._
import Import._
object B extends Build
{
lazy val root = Project("root", file("."))
lazy val sub1 = Project("sub1", file("sub1"))
lazy val sub2 = Project("sub2", file("sub2"))
lazy val sub3 = Project("sub3", file("sub3"))
}