diff options
| author | azidar | 2016-05-06 17:50:31 -0700 |
|---|---|---|
| committer | Jack | 2016-05-08 22:54:11 -0700 |
| commit | d1739237079213d2ec157db5ac56a6d3a73fca86 (patch) | |
| tree | 15f687480f63090ff37c5604b2df846f8d8bd2c0 | |
| parent | 9036d96bb032c19de31131f2296120e708cbc3dc (diff) | |
Fixed sbt error where the typechecker was complaining. Just converted the Seq to variatic argument list
| -rw-r--r-- | build.sbt | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -80,7 +80,7 @@ lazy val chiselFrontend = (project in file("chiselFrontend")). settings(Seq( scalaVersion := "2.11.7", libraryDependencies += "org.scala-lang" % "scala-reflect" % scalaVersion.value - )) + ): _*) lazy val chisel = (project in file(".")). settings(chiselBuildSettings: _*). |
