-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.sbt
73 lines (42 loc) · 1.63 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
// See LICENSE for license details.
// sbt-site - sbt-ghpages
site.settings
site.includeScaladoc()
ghpages.settings
git.remoteRepo := "[email protected]:apl-cornell/sirrtl.git"
// Firrtl code
organization := "edu.berkeley.cs"
name := "sirrtl"
version := "0.2"
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 += "com.github.scopt" %% "scopt" % "3.4.0"
libraryDependencies += "net.jcazevedo" %% "moultingyaml" % "0.2"
// Assembly
assemblyJarName in assembly := "sirrtl.jar"
test in assembly := {} // Should there be tests?
assemblyOutputPath in assembly := file("./utils/bin/sirrtl.jar")
// ANTLRv4
antlr4Settings
antlr4GenVisitor in Antlr4 := true // default = false
antlr4GenListener in Antlr4 := false // default = true
antlr4PackageName in Antlr4 := Option("firrtl.antlr")
// ScalaDoc
import UnidocKeys._
lazy val customUnidocSettings = unidocSettings ++ Seq (
doc in Compile := (doc in ScalaUnidoc).value,
target in unidoc in ScalaUnidoc := crossTarget.value / "api"
)
autoAPIMappings := true
scalacOptions in Compile in doc ++= Seq(
"-diagrams",
"-diagrams-max-classes", "25",
"-doc-version", version.value,
"-doc-title", name.value,
"-doc-root-content", baseDirectory.value+"/root-doc.txt"
)
lazy val genfir = (project in file("genfir"))