aboutsummaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
authorJack2015-10-06 16:03:48 -0700
committerJack2015-10-06 16:03:48 -0700
commit45946bba6942378970ae42502f7b2829c2d3c58f (patch)
treef114016cb92250c37cd6e0e9f672c95daa1dea2a /build.sbt
parent0a9dfbe9f58338fc8af11015f6e9227e0cb46ea4 (diff)
Added ability to test scala FIRRTL
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt23
1 files changed, 17 insertions, 6 deletions
diff --git a/build.sbt b/build.sbt
index 0a083994..dcc38280 100644
--- a/build.sbt
+++ b/build.sbt
@@ -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