Skip to content

Commit

Permalink
cleaning build.sbt with chisel 3.5.6 version
Browse files Browse the repository at this point in the history
  • Loading branch information
Martoni committed Dec 6, 2023
1 parent c75087b commit 3ce7fae
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,19 @@

scalaVersion := "2.13.8"
version := "0.1.1"
organization := "com.armadeus"
organization := "eu.fabienm"

val majorChiselVersion = "3"
val minorChiselVersion = "5.6"

val chiselVersion = majorChiselVersion + "." + minorChiselVersion

lazy val root = (project in file("."))
.settings(
name := "hdmicore",
libraryDependencies ++= Seq(
"edu.berkeley.cs" %% "chisel3" % "3.5.1",
"edu.berkeley.cs" %% "chiseltest" % "0.5.0" % "test",
"edu.berkeley.cs" %% "chisel3" % chiselVersion,
"edu.berkeley.cs" %% "chiseltest" % ("0." + minorChiselVersion) % "test",
"Martoni" %% "fpgamacro" % "0.2.2"
),
scalacOptions ++= Seq(
Expand All @@ -20,6 +25,6 @@ lazy val root = (project in file("."))
"-feature",
"-Xcheckinit",
),
addCompilerPlugin("edu.berkeley.cs" % "chisel3-plugin" % "3.5.1" cross CrossVersion.full),
addCompilerPlugin("edu.berkeley.cs" % "chisel3-plugin" % chiselVersion cross CrossVersion.full),
)

0 comments on commit 3ce7fae

Please sign in to comment.