summaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
authorducky2016-11-17 11:21:59 -0800
committerducky2016-11-21 13:31:12 -0800
commitb0cc0c93a80aec5bed54cfb11923636c09b7e180 (patch)
tree5d3edabd4010cfb0e8dce125f39e89ee904143a0 /build.sbt
parent9e32a39bda3fba11e6b0990e6ad5e7e17b5d8364 (diff)
SInt conversion finished, everything builds again
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt5
1 files changed, 3 insertions, 2 deletions
diff --git a/build.sbt b/build.sbt
index 4ad1cf77..dd36f25f 100644
--- a/build.sbt
+++ b/build.sbt
@@ -18,7 +18,8 @@ lazy val commonSettings = Seq (
version := "3.1-SNAPSHOT",
git.remoteRepo := "git@github.com:ucb-bar/chisel3.git",
autoAPIMappings := true,
- scalaVersion := "2.11.7"
+ scalaVersion := "2.11.7",
+ scalacOptions := Seq("-deprecation")
)
val defaultVersions = Map("firrtl" -> "1.1-SNAPSHOT")
@@ -82,7 +83,7 @@ lazy val chiselSettings = Seq (
"edu.berkeley.cs" %% dep % sys.props.getOrElse(dep + "Version", defaultVersions(dep))
}
},
-
+
// Tests from other projects may still run concurrently.
parallelExecution in Test := true,