Skip to content

Instantly share code, notes, and snippets.

@dadeba
Created November 4, 2014 04:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dadeba/97e5b03a49e0133bed59 to your computer and use it in GitHub Desktop.
Save dadeba/97e5b03a49e0133bed59 to your computer and use it in GitHub Desktop.
scalaVersion := "2.10.2"
resolvers ++= Seq(
"scct-github-repository" at "http://mtkopone.github.com/scct/maven-repo"
)
scalacOptions ++= Seq("-deprecation", "-feature", "-unchecked", "-language:reflectiveCalls")
val chiselVersion_h = System.getProperty("chiselVersion", "latest.release")
libraryDependencies ++= ( if (chiselVersion_h != "None" ) ("edu.berkeley.cs" %% "chisel" % chiselVersion_h) :: Nil; else Nil)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment