2024-01-02 16:10:12 +00:00
|
|
|
ThisBuild / scalaVersion := "2.13.12"
|
|
|
|
ThisBuild / version := "0.1.0"
|
|
|
|
|
|
|
|
|
2024-03-26 04:12:02 +00:00
|
|
|
val chiselVersion = "6.2.0"
|
2024-01-02 16:10:12 +00:00
|
|
|
|
2024-01-06 05:14:29 +00:00
|
|
|
lazy val root = (project in file("."))
|
2024-01-02 16:10:12 +00:00
|
|
|
.settings(
|
2024-03-11 03:54:52 +00:00
|
|
|
name := "flow",
|
2024-01-02 16:10:12 +00:00
|
|
|
libraryDependencies ++= Seq(
|
|
|
|
"org.chipsalliance" %% "chisel" % chiselVersion,
|
2024-03-26 04:12:02 +00:00
|
|
|
"edu.berkeley.cs" %% "chiseltest" % "6.0.0" % "test",
|
2024-03-11 03:54:52 +00:00
|
|
|
"com.chuusai" %% "shapeless" % "2.3.3"
|
2024-01-02 16:10:12 +00:00
|
|
|
),
|
|
|
|
scalacOptions ++= Seq(
|
|
|
|
"-language:reflectiveCalls",
|
|
|
|
"-deprecation",
|
|
|
|
"-feature",
|
|
|
|
"-Xcheckinit",
|
|
|
|
"-Ymacro-annotations",
|
|
|
|
),
|
|
|
|
addCompilerPlugin("org.chipsalliance" % "chisel-plugin" % chiselVersion cross CrossVersion.full),
|
2024-03-26 04:12:02 +00:00
|
|
|
)
|