20 lines
623 B
Scala
20 lines
623 B
Scala
val spinalVersion = "1.4.0"
|
|
|
|
lazy val root = (project in file(".")).
|
|
settings(
|
|
inThisBuild(List(
|
|
organization := "com.github.spinalhdl",
|
|
scalaVersion := "2.11.12",
|
|
version := "2.0.0"
|
|
)),
|
|
libraryDependencies ++= Seq(
|
|
"com.github.spinalhdl" % "spinalhdl-core_2.11" % spinalVersion,
|
|
"com.github.spinalhdl" % "spinalhdl-lib_2.11" % spinalVersion,
|
|
compilerPlugin("com.github.spinalhdl" % "spinalhdl-idsl-plugin_2.11" % spinalVersion),
|
|
"org.scalatest" % "scalatest_2.11" % "2.2.1",
|
|
"org.yaml" % "snakeyaml" % "1.8"
|
|
),
|
|
name := "VexRiscv"
|
|
)
|
|
|
|
fork := true |