summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/cmd/gen/CodegenSpec.scala
blob: 903517c5b41b40523159844bdf10e42a46069142 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/* NEST (New Scala Test)
 * Copyright 2007-2013 LAMP/EPFL
 * @author  Paul Phillips
 */

package scala.tools.cmd
package gen

import FromString.ExistingDir

trait CodegenSpec extends Spec with Meta.StdOpts with Interpolation {
  def referenceSpec       = CodegenSpec
  def programInfo         = Spec.Info("codegen", "", "scala.tools.cmd.gen.Codegen")

  import FromString.ExistingDir

  help("Usage: codegen [<options>]")

  // val inDir    = "in" / "directory containing templates" --^ ExistingDir
  val outDir   = "out" / "directory for generated files" --^ ExistingDir
  // val install  = "install" / "write source files directly to src/library/scala"
  val anyvals  = "anyvals" / "generate sources for AnyVal types" --?
  val products = "products" / "generate sources for ProductN, FunctionN, etc." --?
  val genall   = "all" / "generate sources for everything" --?
  val stamp    = "stamp" / "add a timestamp to the generated files" --?
}

object CodegenSpec extends CodegenSpec with Reference {
  type ThisCommandLine = CommandLine
  def creator(args: List[String]): ThisCommandLine = new CommandLine(CodegenSpec, args)
}