mirror of https://github.com/sbt/sbt.git
8 lines
128 B
Scala
8 lines
128 B
Scala
|
|
package sbt
|
||
|
|
|
||
|
|
object CompileOptions
|
||
|
|
{
|
||
|
|
val Deprecation = "-deprecation"
|
||
|
|
val Unchecked = "-unchecked"
|
||
|
|
val Verbose = "-verbose"
|
||
|
|
}
|