diff options
author | Friedrich Beckmann <friedrich.beckmann@hs-augsburg.de> | 2022-07-25 17:55:39 +0200 |
---|---|---|
committer | Friedrich Beckmann <friedrich.beckmann@hs-augsburg.de> | 2022-07-25 17:55:39 +0200 |
commit | 3fff6023602822531efdae30bc8ebf862967f1ef (patch) | |
tree | 16028102b8d850f8ab3115d28a8539ca6bc5f51d /VexRiscv/build.sbt |
Initial Commit
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 |