2011-03-08 23:50:19 +01:00
|
|
|
/* sbt -- Simple Build Tool
|
|
|
|
|
* Copyright 2009, 2010 Mark Harrah
|
|
|
|
|
*/
|
|
|
|
|
package sbt
|
|
|
|
|
|
2011-03-11 22:54:45 +01:00
|
|
|
final case class ClasspathOptions(bootLibrary: Boolean, compiler: Boolean, extra: Boolean, autoBoot: Boolean)
|
2011-03-08 23:50:19 +01:00
|
|
|
object ClasspathOptions
|
|
|
|
|
{
|
2011-03-11 22:54:45 +01:00
|
|
|
def manual = ClasspathOptions(false, false, false, true)
|
|
|
|
|
def auto = ClasspathOptions(true, true, true, true)
|
2011-03-08 23:50:19 +01:00
|
|
|
}
|