mirror of
https://github.com/SpinalHDL/SpinalTemplateSbt.git
synced 2025-10-22 23:58:44 +08:00
17 lines
403 B
Scala
17 lines
403 B
Scala
name := "SpinalTemplateSbt"
|
|
|
|
version := "1.0"
|
|
|
|
scalaVersion := "2.11.6"
|
|
|
|
EclipseKeys.withSource := true
|
|
|
|
libraryDependencies ++= Seq(
|
|
"com.github.spinalhdl" % "spinalhdl-core_2.11" % "1.1.6",
|
|
"com.github.spinalhdl" % "spinalhdl-lib_2.11" % "1.1.6"
|
|
)
|
|
|
|
addCompilerPlugin("org.scala-lang.plugins" % "scala-continuations-plugin_2.11.6" % "1.0.2")
|
|
scalacOptions += "-P:continuations:enable"
|
|
fork := true
|