21 lines
611 B
Scala
21 lines
611 B
Scala
val spinalVersion = "1.10.2a"
|
|
|
|
lazy val root = (project in file(".")).
|
|
settings(
|
|
inThisBuild(List(
|
|
organization := "com.github.spinalhdl",
|
|
scalaVersion := "2.12.18",
|
|
version := "2.0.0"
|
|
)),
|
|
libraryDependencies ++= Seq(
|
|
"com.github.spinalhdl" %% "spinalhdl-core" % spinalVersion,
|
|
"com.github.spinalhdl" %% "spinalhdl-lib" % spinalVersion,
|
|
compilerPlugin("com.github.spinalhdl" %% "spinalhdl-idsl-plugin" % spinalVersion),
|
|
"org.scalatest" %% "scalatest" % "3.2.17",
|
|
"org.yaml" % "snakeyaml" % "1.8"
|
|
),
|
|
name := "VexRiscv"
|
|
)
|
|
|
|
fork := true
|