1
0

Add chisel-dependent.sbt for -DchiselVersion="latest.release"

If -DchiselVersion is specified on the command line, add the
appropriate chisel library to libraryDependencies.
This commit is contained in:
Jim Lawson 2014-04-17 17:01:40 -07:00
parent b1df49ba30
commit bf2ff7804e

View File

@ -0,0 +1,6 @@
// Provide a managed dependency on chisel if -DchiselVersion="" is
// supplied on the command line.
val chiselVersion = System.getProperty("chiselVersion", "None")
libraryDependencies ++= ( if (chiselVersion != "None" ) ("edu.berkeley.cs" %% "chisel" % chiselVersion) :: Nil; else Nil)