forked from chipsalliance/firrtl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
40 lines (19 loc) · 930 Bytes
/
build.sbt
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
32
33
34
35
36
37
38
39
organization := "edu.berkeley.cs"
name := "firrtl"
version := "1.1-SNAPSHOT"
scalaVersion := "2.11.7"
libraryDependencies += "org.scala-lang" % "scala-reflect" % scalaVersion.value
libraryDependencies += "com.typesafe.scala-logging" %% "scala-logging" % "3.1.0"
libraryDependencies += "ch.qos.logback" % "logback-classic" % "1.1.2"
libraryDependencies += "org.scalatest" % "scalatest_2.11" % "2.2.6" % "test"
libraryDependencies += "org.scalacheck" %% "scalacheck" % "1.12.5" % "test"
libraryDependencies += "net.jcazevedo" %% "moultingyaml" % "0.2"
// Assembly
assemblyJarName in assembly := "firrtl.jar"
test in assembly := {} // Should there be tests?
assemblyOutputPath in assembly := file("./utils/bin/firrtl.jar")
// ANTLRv4
antlr4Settings
antlr4GenVisitor in Antlr4 := true // default = false
antlr4GenListener in Antlr4 := false // default = true
antlr4PackageName in Antlr4 := Option("firrtl.antlr")