// See README.md for license details. ThisBuild / scalaVersion := "2.13.12" ThisBuild / version := "0.1.0" ThisBuild / organization := "%ORGANIZATION%" val chiselVersion = "6.2.0" lazy val root = (project in file(".")) .settings( name := "%NAME%", libraryDependencies ++= Seq( "org.chipsalliance" %% "chisel" % chiselVersion, "edu.berkeley.cs" %% "chiseltest" % "6.0.0" % "test", "org.scalatest" %% "scalatest" % "3.2.16" % "test" ), scalacOptions ++= Seq( "-language:reflectiveCalls", "-deprecation", "-feature", "-Xcheckinit", "-Ymacro-annotations" ), addCompilerPlugin( "org.chipsalliance" % "chisel-plugin" % chiselVersion cross CrossVersion.full ) )