1
0
rocket-chip/rocket/uncore-dependent.sbt
2014-08-18 19:23:10 -07:00

9 lines
294 B
Scala

// Provide a managed dependency on chisel if -DuncoreVersion="" is
// supplied on the command line.
val uncoreVersion = System.getProperty("uncoreVersion", "None")
libraryDependencies ++= ( if (uncoreVersion != "None" ) (
"edu.berkeley.cs" %% "uncore" % uncoreVersion
) :: Nil; else Nil)