Skip to content

Commit

Permalink
relative spinal
Browse files Browse the repository at this point in the history
  • Loading branch information
Dolu1990 committed Jul 4, 2024
1 parent bc18f66 commit 1cc2b23
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ lazy val root = (project in file(".")).
scalaVersion := "2.12.18",
version := "2.0.0"
)),
scalacOptions += s"-Xplugin:${new File(baseDirectory.value + s"/ext/SpinalHDL/idslplugin/target/scala-2.12/spinalhdl-idsl-plugin_2.12-$spinalVersion.jar")}",
scalacOptions += s"-Xplugin:${new File(baseDirectory.value + s"/../SpinalHDL/idslplugin/target/scala-2.12/spinalhdl-idsl-plugin_2.12-$spinalVersion.jar")}",
scalacOptions += s"-Xplugin-require:idsl-plugin",
scalacOptions += "-language:reflectiveCalls",
libraryDependencies ++= Seq(
Expand All @@ -22,9 +22,9 @@ lazy val root = (project in file(".")).
Compile / unmanagedSourceDirectories += baseDirectory.value / "ext/rvls/bindings/jni",
name := "NaxRiscv"
).dependsOn(spinalHdlIdslPlugin, spinalHdlSim,spinalHdlCore,spinalHdlLib)
lazy val spinalHdlIdslPlugin = ProjectRef(file("ext/SpinalHDL"), "idslplugin")
lazy val spinalHdlSim = ProjectRef(file("ext/SpinalHDL"), "sim")
lazy val spinalHdlCore = ProjectRef(file("ext/SpinalHDL"), "core")
lazy val spinalHdlLib = ProjectRef(file("ext/SpinalHDL"), "lib")
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

0 comments on commit 1cc2b23

Please sign in to comment.