VexRiscv/build.sbt

23 lines
522 B
Plaintext
Raw Normal View History

2017-03-10 18:34:49 -05:00
name := "VexRiscv"
2017-03-08 16:17:48 -05:00
organization := "com.github.spinalhdl"
2018-08-24 00:51:10 -04:00
version := "1.0.0"
2017-03-08 16:17:48 -05:00
2017-12-13 18:57:12 -05:00
scalaVersion := "2.11.6"
2017-03-08 16:17:48 -05:00
EclipseKeys.withSource := true
libraryDependencies ++= Seq(
2018-09-16 04:16:43 -04:00
"com.github.spinalhdl" % "spinalhdl-core_2.11" % "1.2.0",
"com.github.spinalhdl" % "spinalhdl-lib_2.11" % "1.2.0",
"org.scalatest" % "scalatest_2.11" % "2.2.1",
2017-06-09 10:06:18 -04:00
"org.yaml" % "snakeyaml" % "1.8"
2017-10-30 09:29:25 -04:00
)
2017-12-13 18:57:12 -05:00
2017-12-13 18:57:12 -05:00
addCompilerPlugin("org.scala-lang.plugins" % "scala-continuations-plugin_2.11.6" % "1.0.2")
scalacOptions += "-P:continuations:enable"
2018-08-24 00:51:10 -04:00
fork := true