generated from chipsalliance/chisel-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
33 lines (30 loc) · 941 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import sbt.Keys.parallelExecution
import sbt.Test
// See README.md for license details.
ThisBuild / scalaVersion := "2.13.12"
ThisBuild / version := "0.1.0"
ThisBuild / organization := "%ORGANIZATION%"
val chiselVersion = "6.5.0"
//val chiselVersion = "7.0.0-M2"
lazy val root = (project in file("."))
.settings(
name := "chisel-fish",
Test / parallelExecution := false,
libraryDependencies ++= Seq(
"org.chipsalliance" %% "chisel" % chiselVersion,
"edu.berkeley.cs" %% "chiseltest" % "6.0.0",
"net.fornwall" % "jelf" % "0.7.0",
"org.typelevel" %% "spire" % "0.18.0",
"org.scalacheck" %% "scalacheck" % "1.17.0"
),
scalacOptions ++= Seq(
"-language:reflectiveCalls",
"-deprecation",
"-feature",
"-Xcheckinit",
"-Ymacro-annotations"
),
addCompilerPlugin(
"org.chipsalliance" % "chisel-plugin" % chiselVersion cross CrossVersion.full
)
)