From a0d1fdb16c04957d9c7f48415fd6c77479259094 Mon Sep 17 00:00:00 2001 From: Tynan McAuley Date: Wed, 2 Feb 2022 17:31:52 -0800 Subject: [PATCH] Add Chisel compiler plugin See here for more info: https://github.com/chipsalliance/chisel3#build-your-own-chisel-projects --- build.sbt | 1 + 1 file changed, 1 insertion(+) diff --git a/build.sbt b/build.sbt index 67d09427..8ce17447 100644 --- a/build.sbt +++ b/build.sbt @@ -23,6 +23,7 @@ libraryDependencies ++= Seq( "org.apache.logging.log4j" % "log4j-api" % "2.11.2", "org.apache.logging.log4j" % "log4j-core" % "2.11.2" ) +addCompilerPlugin("edu.berkeley.cs" % "chisel3-plugin" % defaultVersions("chisel3") cross CrossVersion.full) resolvers ++= Seq( Resolver.sonatypeRepo("snapshots"), Resolver.sonatypeRepo("releases"),