-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
38 lines (30 loc) · 1.34 KB
/
build.sbt
File metadata and controls
38 lines (30 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// // scalaVersion := "2.11.12"
// // libraryDependencies ++= Seq(
// // "com.github.spinalhdl" % "spinalhdl-core_2.11" % "1.7.0",
// // "com.github.spinalhdl" % "spinalhdl-lib_2.11" % "1.7.0",
// // compilerPlugin("com.github.spinalhdl" % "spinalhdl-idsl-plugin_2.11" % "1.7.0"),
// // "com.google.code.gson" % "gson" % "2.7"
// // )
// ThisBuild / version := "1.0"
// ThisBuild / scalaVersion := "2.12.16"
// ThisBuild / organization := "org.example"
// val spinalVersion = "1.8.1"
// 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)
// lazy val projectname = (project in file("."))
// .settings(
// Compile / scalaSource := baseDirectory.value / "hw" / "spinal",
// libraryDependencies ++= Seq(spinalCore, spinalLib, spinalIdslPlugin)
// )
// fork := true
name := "spinal_yolo_dev"
version := "0.1"
scalaVersion := "2.11.12"
fork := true
libraryDependencies ++= Seq(
"com.github.spinalhdl" % "spinalhdl-core_2.11" % "1.8.1",
"com.github.spinalhdl" % "spinalhdl-lib_2.11" % "1.8.1",
compilerPlugin("com.github.spinalhdl" % "spinalhdl-idsl-plugin_2.11" % "1.8.1"),
"com.google.code.gson" % "gson" % "2.7"
)