-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
19 lines (13 loc) · 847 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
name := "ASG"
version := "1.0"
scalaVersion := "2.12.18"
val spinalVersion = "1.10.2a"
val spinalCore = "com.github.spinalhdl" %% "spinalhdl-core" % spinalVersion
val spinalLib = "com.github.spinalhdl" %% "spinalhdl-lib" % spinalVersion
val spinalIdslPlugin = compilerPlugin("com.github.spinalhdl" %% "spinalhdl-idsl-plugin" % spinalVersion)
val spinalSim = "com.github.spinalhdl" %% "spinalhdl-sim" % spinalVersion
val rings = "cc.redberry" %% "rings.scaladsl" % "2.5.7"
val scopt = "com.github.scopt" %% "scopt" % "4.1.0"
// Added the spinal libraries
libraryDependencies ++= Seq(spinalCore, spinalLib, spinalIdslPlugin, spinalSim, rings, scopt)
fork := true