16 lines
596 B
Scala
16 lines
596 B
Scala
ThisBuild / version := "1.0"
|
|
ThisBuild / scalaVersion := "2.13.14"
|
|
ThisBuild / organization := "cn.tiferking"
|
|
|
|
val spinalVersion = "1.12.0"
|
|
val spinalCore = "com.github.spinalhdl" %% "spinalhdl-core" % spinalVersion
|
|
val spinalLib = "com.github.spinalhdl" %% "spinalhdl-lib" % spinalVersion
|
|
val spinalIdslPlugin = compilerPlugin("com.github.spinalhdl" %% "spinalhdl-idsl-plugin" % spinalVersion)
|
|
|
|
lazy val root = (project in file("."))
|
|
.settings(
|
|
Compile / scalaSource := baseDirectory.value / "src",
|
|
libraryDependencies ++= Seq(spinalCore, spinalLib, spinalIdslPlugin)
|
|
)
|
|
|
|
fork := true |