ysyx-workbench/npc/core/build.sbt

24 lines
650 B
Text
Raw Normal View History

2024-01-05 15:55:58 +00:00
ThisBuild / scalaVersion := "2.13.12"
ThisBuild / version := "0.1.0"
2024-03-13 06:53:31 +00:00
val chiselVersion = "6.2.0"
2024-01-05 15:55:58 +00:00
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-13 06:53:31 +00:00
"edu.berkeley.cs" %% "chiseltest" % "6.0.0" % "test",
2024-03-11 13:41:45 +00:00
"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),
2024-03-13 06:53:31 +00:00
)