diff options
Diffstat (limited to 'VexRiscv/build.sbt')
-rw-r--r-- | VexRiscv/build.sbt | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/VexRiscv/build.sbt b/VexRiscv/build.sbt new file mode 100644 index 0000000..72cab4a --- /dev/null +++ b/VexRiscv/build.sbt @@ -0,0 +1,20 @@ +val spinalVersion = "1.7.1" + +lazy val root = (project in file(".")). + settings( + inThisBuild(List( + organization := "com.github.spinalhdl", + scalaVersion := "2.11.12", + version := "2.0.0" + )), + 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), + "org.scalatest" %% "scalatest" % "3.2.5", + "org.yaml" % "snakeyaml" % "1.8" + ), + name := "VexRiscv" + ) + +fork := true |