24 lines
956 B
Scala
24 lines
956 B
Scala
val spinalVersion = "1.4.4"
|
|
|
|
lazy val root = (project in file(".")).
|
|
settings(
|
|
inThisBuild(List(
|
|
organization := "com.github.spinalhdl",
|
|
scalaVersion := "2.11.12",
|
|
version := "2.0.0"
|
|
)),
|
|
scalacOptions += s"-Xplugin:${new File(baseDirectory.value + s"/../SpinalHDL/idslplugin/target/scala-2.11/spinalhdl-idsl-plugin_2.11-$spinalVersion.jar")}",
|
|
scalacOptions += s"-Xplugin-require:idsl-plugin",
|
|
libraryDependencies ++= Seq(
|
|
"org.scalatest" % "scalatest_2.11" % "2.2.1",
|
|
"org.yaml" % "snakeyaml" % "1.8"
|
|
),
|
|
name := "VexRiscv"
|
|
).dependsOn(spinalHdlIdslPlugin, spinalHdlSim,spinalHdlCore,spinalHdlLib)
|
|
lazy val spinalHdlIdslPlugin = ProjectRef(file("../SpinalHDL"), "idslplugin")
|
|
lazy val spinalHdlSim = ProjectRef(file("../SpinalHDL"), "sim")
|
|
lazy val spinalHdlCore = ProjectRef(file("../SpinalHDL"), "core")
|
|
lazy val spinalHdlLib = ProjectRef(file("../SpinalHDL"), "lib")
|
|
|
|
fork := true
|