mirror of
https://github.com/SpinalHDL/SpinalTemplateSbt.git
synced 2025-10-22 23:58:44 +08:00
13 lines
352 B
Scala
13 lines
352 B
Scala
name := "SpinalTemplateSbt"
|
|
version := "1.0"
|
|
scalaVersion := "2.12.14"
|
|
val spinalVersion = "1.4.3"
|
|
|
|
libraryDependencies ++= Seq(
|
|
"com.github.spinalhdl" %% "spinalhdl-core" % spinalVersion,
|
|
"com.github.spinalhdl" %% "spinalhdl-lib" % spinalVersion,
|
|
compilerPlugin("com.github.spinalhdl" %% "spinalhdl-idsl-plugin" % spinalVersion)
|
|
)
|
|
|
|
fork := true
|