diff options
| author | Jack | 2015-10-06 16:03:48 -0700 |
|---|---|---|
| committer | Jack | 2015-10-06 16:03:48 -0700 |
| commit | 45946bba6942378970ae42502f7b2829c2d3c58f (patch) | |
| tree | f114016cb92250c37cd6e0e9f672c95daa1dea2a /build.sbt | |
| parent | 0a9dfbe9f58338fc8af11015f6e9227e0cb46ea4 (diff) | |
Added ability to test scala FIRRTL
Diffstat (limited to 'build.sbt')
| -rw-r--r-- | build.sbt | 23 |
1 files changed, 17 insertions, 6 deletions
@@ -1,9 +1,20 @@ -lazy val root = (project in file(".")). - settings( - name := "firrtl", - version := "1.0", - scalaVersion := "2.11.4" - ) +organization := "edu.berkeley.cs" + +name := "firrtl" + +version := "0.1-SNAPSHOT" + +scalaVersion := "2.11.4" + +// Assembly + +assemblyJarName in assembly := "firrtl.jar" + +test in assembly := {} // Should there be tests? + +assemblyOutputPath in assembly := file("./utils/bin/firrtl.jar") + +// ANTLRv4 antlr4Settings |
