mirror of
https://github.com/antonblanchard/chiselwatt.git
synced 2026-01-11 23:53:33 +00:00
23 lines
577 B
Scala
23 lines
577 B
Scala
// See README.md for license details.
|
|
|
|
|
|
ThisBuild / scalaVersion := "2.12.15"
|
|
ThisBuild / version := "3.2.0"
|
|
|
|
|
|
lazy val root = (project in file("."))
|
|
.settings(
|
|
name := "chiselwatt",
|
|
libraryDependencies ++= Seq(
|
|
"edu.berkeley.cs" %% "chisel3" % "3.5.0",
|
|
"edu.berkeley.cs" %% "chiseltest" % "0.5.0" % "test"
|
|
),
|
|
scalacOptions ++= Seq(
|
|
"-language:reflectiveCalls",
|
|
"-deprecation",
|
|
"-feature",
|
|
"-Xcheckinit"
|
|
),
|
|
addCompilerPlugin("edu.berkeley.cs" % "chisel3-plugin" % "3.5.0" cross CrossVersion.full),
|
|
)
|