ysyx-workbench/npc/core/build.sbt

23 lines
649 B
Text
Raw Normal View History

2024-01-05 15:55:58 +00:00
ThisBuild / scalaVersion := "2.13.12"
ThisBuild / version := "0.1.0"
val chiselVersion = "5.1.0"
lazy val root = (project in file("."))
.settings(
2024-03-11 13:41:45 +00:00
name := "flow",
2024-01-05 15:55:58 +00:00
libraryDependencies ++= Seq(
"org.chipsalliance" %% "chisel" % chiselVersion,
2024-03-11 13:41:45 +00:00
"edu.berkeley.cs" %% "chiseltest" % "5.0.2" % "test",
"com.chuusai" %% "shapeless" % "2.3.3"
2024-01-05 15:55:58 +00:00
),
scalacOptions ++= Seq(
"-language:reflectiveCalls",
"-deprecation",
"-feature",
"-Xcheckinit",
"-Ymacro-annotations",
),
addCompilerPlugin("org.chipsalliance" % "chisel-plugin" % chiselVersion cross CrossVersion.full),
)