From 17b8ac4bf4ed723c1606a6b3419870fd3acfe1bb Mon Sep 17 00:00:00 2001 From: mihaylov Date: Mon, 8 Dec 2003 09:41:21 +0000 Subject: - added a '-r' option to specify the assemblies... - added a '-r' option to specify the assemblies referenced by the source program --- sources/scalac/CompilerCommand.java | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'sources/scalac') diff --git a/sources/scalac/CompilerCommand.java b/sources/scalac/CompilerCommand.java index b67cf14b26..7d61dd8acf 100644 --- a/sources/scalac/CompilerCommand.java +++ b/sources/scalac/CompilerCommand.java @@ -55,6 +55,7 @@ public class CompilerCommand extends CommandParser { public final StringOptionParser bootclasspath; public final StringOptionParser extdirs; public final StringOptionParser outpath; + public final StringOptionParser assemrefs; public final ChoiceOptionParser target; public final BooleanOptionParser noimports; public final BooleanOptionParser nopredefs; @@ -159,6 +160,10 @@ public class CompilerCommand extends CommandParser { "d", "Specify where to place generated class files", "directory", "."), + this.assemrefs = new StringOptionParser(this, + "r", "Assemblies referenced by the source program", + "assembly files", "."), + this.target = new ChoiceOptionParser(this, "target", "Specify which bakend to use (jvm, msil)", "target", Global.TARGETS, Global.TARGET_JVM), -- cgit v1.2.3