|
ThisBuild / organization := "mupq"
|
|
|
|
ThisBuild / scalaVersion := "2.11.12"
|
|
|
|
lazy val pqvexriscv = (project in file("."))
|
|
.settings(
|
|
name := "pqvexriscv",
|
|
version := "0.1",
|
|
libraryDependencies ++= Seq(
|
|
"org.scalatest" %% "scalatest" % "3.0.5" % "test",
|
|
compilerPlugin("com.github.spinalhdl" % "spinalhdl-idsl-plugin_2.11" % "1.4.0"),
|
|
"com.github.spinalhdl" % "spinalhdl-crypto_2.11" % "latest.release"
|
|
),
|
|
run / connectInput := true,
|
|
outputStrategy := Some(StdoutOutput),
|
|
).dependsOn(vexRiscv)
|
|
|
|
lazy val vexRiscv = RootProject(uri("git://github.com/SpinalHDL/VexRiscv#2942d0652a89646c5225bee15dd55cc3b0871766"))
|
|
|
|
fork := true
|