diff options
| author | Adam Izraelevitz | 2015-10-19 13:56:32 -0700 |
|---|---|---|
| committer | Adam Izraelevitz | 2015-10-19 13:56:32 -0700 |
| commit | f258c8394ebe7136e0eee7e1e342b5b593d1cc5d (patch) | |
| tree | 5d000281afd7f217bee0c5c2030f3a17e079a3f0 /build.sbt | |
| parent | 154c7d86a104264a3e3355d105f8e60926a10626 (diff) | |
| parent | 80c055ce93c9d5988c6158c4a91c01633f8ebf22 (diff) | |
Merge pull request #47 from jackkoenig/master
Updated Scala FIRRTL with Testing and Infer-Types Pass
Diffstat (limited to 'build.sbt')
| -rw-r--r-- | build.sbt | 17 |
1 files changed, 16 insertions, 1 deletions
@@ -1,10 +1,25 @@ + + lazy val root = (project in file(".")). settings( + organization := "edu.berkeley.cs", name := "firrtl", - version := "1.0", + version := "0.1-SNAPSHOT", scalaVersion := "2.11.4" ) +libraryDependencies += "org.scala-lang" % "scala-reflect" % scalaVersion.value + +// 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 |
