forked from SpinalHDL/SaxonSoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
27 lines (21 loc) · 855 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
val spinalVersion = "1.6.1"
lazy val root = (project in file(".")).
settings(
inThisBuild(List(
organization := "com.github.spinalhdl",
scalaVersion := "2.11.12",
version := "1.0.0"
)),
scalacOptions += s"-Xplugin:${new File(baseDirectory.value + s"/ext/SpinalHDL/idslplugin/target/scala-2.11/spinalhdl-idsl-plugin_2.11-$spinalVersion.jar")}",
scalacOptions += s"-Xplugin-require:idsl-plugin",
libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % "3.2.5",
"org.yaml" % "snakeyaml" % "1.8"
),
name := "SaxonSoc",
scalaSource in Compile := baseDirectory.value / "hardware" / "scala",
scalaSource in Test := baseDirectory.value / "test" / "scala"
).dependsOn(vexRiscv)
lazy val vexRiscv = RootProject(file("ext/VexRiscv"))
fork := true
connectInput in run := true