Merge branch 'compiler_plugin' into dev
This commit is contained in:
commit
0c255e2404
|
@ -1,4 +1,3 @@
|
||||||
|
|
||||||
lazy val root = (project in file(".")).
|
lazy val root = (project in file(".")).
|
||||||
settings(
|
settings(
|
||||||
inThisBuild(List(
|
inThisBuild(List(
|
||||||
|
@ -6,6 +5,8 @@ lazy val root = (project in file(".")).
|
||||||
scalaVersion := "2.11.12",
|
scalaVersion := "2.11.12",
|
||||||
version := "2.0.0"
|
version := "2.0.0"
|
||||||
)),
|
)),
|
||||||
|
scalacOptions += s"-Xplugin:${new File(baseDirectory.value + "/../SpinalHDL/idslplugin/target/scala-2.11/spinalhdl-idsl-plugin_2.11-1.3.9.jar")}",
|
||||||
|
scalacOptions += s"-Xplugin-require:idsl-plugin",
|
||||||
libraryDependencies ++= Seq(
|
libraryDependencies ++= Seq(
|
||||||
// "com.github.spinalhdl" % "spinalhdl-core_2.11" % "1.3.6",
|
// "com.github.spinalhdl" % "spinalhdl-core_2.11" % "1.3.6",
|
||||||
// "com.github.spinalhdl" % "spinalhdl-lib_2.11" % "1.3.6",
|
// "com.github.spinalhdl" % "spinalhdl-lib_2.11" % "1.3.6",
|
||||||
|
@ -13,10 +14,10 @@ lazy val root = (project in file(".")).
|
||||||
"org.yaml" % "snakeyaml" % "1.8"
|
"org.yaml" % "snakeyaml" % "1.8"
|
||||||
),
|
),
|
||||||
name := "VexRiscv"
|
name := "VexRiscv"
|
||||||
).dependsOn(spinalHdlSim,spinalHdlCore,spinalHdlLib)
|
).dependsOn(spinalHdlIdslPlugin, spinalHdlSim,spinalHdlCore,spinalHdlLib)
|
||||||
|
lazy val spinalHdlIdslPlugin = ProjectRef(file("../SpinalHDL"), "idslplugin")
|
||||||
lazy val spinalHdlSim = ProjectRef(file("../SpinalHDL"), "sim")
|
lazy val spinalHdlSim = ProjectRef(file("../SpinalHDL"), "sim")
|
||||||
lazy val spinalHdlCore = ProjectRef(file("../SpinalHDL"), "core")
|
lazy val spinalHdlCore = ProjectRef(file("../SpinalHDL"), "core")
|
||||||
lazy val spinalHdlLib = ProjectRef(file("../SpinalHDL"), "lib")
|
lazy val spinalHdlLib = ProjectRef(file("../SpinalHDL"), "lib")
|
||||||
|
|
||||||
|
|
||||||
fork := true
|
fork := true
|
Loading…
Reference in New Issue