aboutsummaryrefslogtreecommitdiff
path: root/build.sbt
blob: 0a083994c6973d09f98d32329e5547d00e6424eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
lazy val root = (project in file(".")).
  settings(
    name := "firrtl",
    version := "1.0",
    scalaVersion := "2.11.4"
  )

antlr4Settings

antlr4GenVisitor in Antlr4 := true // default = false

antlr4GenListener in Antlr4 := false // default = true

antlr4PackageName in Antlr4 := Option("firrtl.antlr")