13 lines
363 B
Scala
13 lines
363 B
Scala
name := "SpinalExercises"
|
|
version := "0.1"
|
|
|
|
scalaVersion := "2.11.12"
|
|
val spinalVersion = "1.7.3"
|
|
|
|
fork := true
|
|
|
|
libraryDependencies ++= Seq(
|
|
"com.github.spinalhdl" % "spinalhdl-core_2.11" % spinalVersion,
|
|
"com.github.spinalhdl" % "spinalhdl-lib_2.11" % spinalVersion,
|
|
compilerPlugin("com.github.spinalhdl" % "spinalhdl-idsl-plugin_2.11" % spinalVersion)
|
|
)
|