summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/Settings.scala
diff options
context:
space:
mode:
authordcaoyuan <dcaoyuan@epfl.ch>2009-11-27 21:15:24 +0000
committerdcaoyuan <dcaoyuan@epfl.ch>2009-11-27 21:15:24 +0000
commitcf92cfb928f8a3ff5b178e438ee7bb9b8136086b (patch)
tree88c651b118b33354616c385fd6635d61d6ee23dc /src/compiler/scala/tools/nsc/Settings.scala
parentd56190908fa2f4fab3a1beb46a68a39d81f475e3 (diff)
downloadscala-cf92cfb928f8a3ff5b178e438ee7bb9b8136086b.tar.gz
scala-cf92cfb928f8a3ff5b178e438ee7bb9b8136086b.tar.bz2
scala-cf92cfb928f8a3ff5b178e438ee7bb9b8136086b.zip
Added -make option transitivenocp which won't c...
Added -make option transitivenocp which won't check classpath, so some build tools such as maven can manage this by itself
Diffstat (limited to 'src/compiler/scala/tools/nsc/Settings.scala')
-rw-r--r--src/compiler/scala/tools/nsc/Settings.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/Settings.scala b/src/compiler/scala/tools/nsc/Settings.scala
index 50ef58232b..22dd700d1e 100644
--- a/src/compiler/scala/tools/nsc/Settings.scala
+++ b/src/compiler/scala/tools/nsc/Settings.scala
@@ -748,7 +748,7 @@ trait ScalacSettings {
val extdirs = StringSetting ("-extdirs", "dirs", "Override location of installed extensions", extdirsDefault)
val debuginfo = DebugSetting ("-g", "Specify level of generated debugging info", List("none", "source", "line", "vars", "notailcalls"), "vars", "vars")
val help = BooleanSetting ("-help", "Print a synopsis of standard options")
- val make = ChoiceSetting ("-make", "Specify recompilation detection strategy", List("all", "changed", "immediate", "transitive"), "all") .
+ val make = ChoiceSetting ("-make", "Specify recompilation detection strategy", List("all", "changed", "immediate", "transitive", "transitivenocp"), "all") .
withHelpSyntax("-make:<strategy>")
val nowarnings = BooleanSetting ("-nowarn", "Generate no warnings")
val XO = BooleanSetting ("-optimise", "Generates faster bytecode by applying optimisations to the program").withAbbreviation("-optimize")