2018-09-16 05:00:56 -04:00
|
|
|
//name := "VexRiscv"
|
|
|
|
//
|
|
|
|
//organization := "com.github.spinalhdl"
|
|
|
|
//
|
|
|
|
//version := "1.0.0"
|
|
|
|
//
|
|
|
|
//scalaVersion := "2.11.6"
|
|
|
|
//
|
|
|
|
//EclipseKeys.withSource := true
|
|
|
|
//
|
|
|
|
//libraryDependencies ++= Seq(
|
|
|
|
// "com.github.spinalhdl" % "spinalhdl-core_2.11" % "1.2.1",
|
|
|
|
// "com.github.spinalhdl" % "spinalhdl-lib_2.11" % "1.2.1",
|
|
|
|
// "org.scalatest" % "scalatest_2.11" % "2.2.1",
|
|
|
|
// "org.yaml" % "snakeyaml" % "1.8"
|
|
|
|
//)
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//addCompilerPlugin("org.scala-lang.plugins" % "scala-continuations-plugin_2.11.6" % "1.0.2")
|
|
|
|
//scalacOptions += "-P:continuations:enable"
|
|
|
|
//fork := true
|
|
|
|
|
|
|
|
lazy val root = (project in file(".")).
|
|
|
|
settings(
|
|
|
|
inThisBuild(List(
|
|
|
|
organization := "com.github.spinalhdl",
|
|
|
|
scalaVersion := "2.11.6",
|
|
|
|
version := "1.0.0"
|
|
|
|
)),
|
|
|
|
libraryDependencies ++= Seq(
|
2018-11-30 11:37:17 -05:00
|
|
|
// "com.github.spinalhdl" % "spinalhdl-core_2.11" % "1.2.2",
|
|
|
|
// "com.github.spinalhdl" % "spinalhdl-lib_2.11" % "1.2.2",
|
2018-09-16 05:00:56 -04:00
|
|
|
"org.scalatest" % "scalatest_2.11" % "2.2.1",
|
|
|
|
"org.yaml" % "snakeyaml" % "1.8"
|
|
|
|
),
|
|
|
|
name := "VexRiscv"
|
2018-11-30 11:37:17 -05:00
|
|
|
).dependsOn(spinalHdlSim,spinalHdlCore,spinalHdlLib)
|
2018-09-16 05:00:56 -04:00
|
|
|
lazy val spinalHdlSim = ProjectRef(file("../SpinalHDL"), "SpinalHDL-sim")
|
|
|
|
lazy val spinalHdlCore = ProjectRef(file("../SpinalHDL"), "SpinalHDL-core")
|
2018-11-30 11:37:17 -05:00
|
|
|
lazy val spinalHdlLib = ProjectRef(file("../SpinalHDL"), "SpinalHDL-lib")
|
2018-05-28 03:02:01 -04:00
|
|
|
|
|
|
|
|
2017-12-13 18:57:12 -05:00
|
|
|
addCompilerPlugin("org.scala-lang.plugins" % "scala-continuations-plugin_2.11.6" % "1.0.2")
|
|
|
|
scalacOptions += "-P:continuations:enable"
|
2018-09-16 05:00:56 -04:00
|
|
|
fork := true
|