VexRiscv/build.sbt

22 lines
752 B
Plaintext
Raw Normal View History

2018-09-16 05:00:56 -04:00
lazy val root = (project in file(".")).
settings(
inThisBuild(List(
organization := "com.github.spinalhdl",
2018-12-30 09:51:46 -05:00
scalaVersion := "2.11.12",
2019-04-24 16:17:46 -04:00
version := "2.0.0"
2018-09-16 05:00:56 -04:00
)),
libraryDependencies ++= Seq(
2020-01-29 17:20:35 -05:00
"com.github.spinalhdl" % "spinalhdl-core_2.11" % "1.3.8",
"com.github.spinalhdl" % "spinalhdl-lib_2.11" % "1.3.8",
2018-09-16 05:00:56 -04:00
"org.scalatest" % "scalatest_2.11" % "2.2.1",
"org.yaml" % "snakeyaml" % "1.8"
),
name := "VexRiscv"
2020-01-29 17:20:35 -05:00
)//.dependsOn(spinalHdlSim,spinalHdlCore,spinalHdlLib)
//lazy val spinalHdlSim = ProjectRef(file("../SpinalHDL"), "sim")
//lazy val spinalHdlCore = ProjectRef(file("../SpinalHDL"), "core")
//lazy val spinalHdlLib = ProjectRef(file("../SpinalHDL"), "lib")
2018-09-16 05:00:56 -04:00
fork := true