bf2ff7804e
If -DchiselVersion is specified on the command line, add the appropriate chisel library to libraryDependencies.
7 lines
288 B
Scala
7 lines
288 B
Scala
// 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)
|