eb9c99b0fd
ysyx_22040000 李心杨 Linux calcite 6.1.69 #1-NixOS SMP PREEMPT_DYNAMIC Wed Dec 20 16:00:29 UTC 2023 x86_64 GNU/Linux 00:10:12 up 2 days 8:49, 2 users, load average: 0.43, 0.56, 0.49
22 lines
No EOL
613 B
Scala
22 lines
No EOL
613 B
Scala
ThisBuild / scalaVersion := "2.13.12"
|
|
ThisBuild / version := "0.1.0"
|
|
|
|
|
|
val chiselVersion = "5.1.0"
|
|
|
|
lazy val root = (project in file("."))
|
|
.settings(
|
|
name := "ChiselLearning",
|
|
libraryDependencies ++= Seq(
|
|
"org.chipsalliance" %% "chisel" % chiselVersion,
|
|
"edu.berkeley.cs" %% "chiseltest" % "5.0.2" % "test"
|
|
),
|
|
scalacOptions ++= Seq(
|
|
"-language:reflectiveCalls",
|
|
"-deprecation",
|
|
"-feature",
|
|
"-Xcheckinit",
|
|
"-Ymacro-annotations",
|
|
),
|
|
addCompilerPlugin("org.chipsalliance" % "chisel-plugin" % chiselVersion cross CrossVersion.full),
|
|
) |