16 lines
576 B
Scala
16 lines
576 B
Scala
ThisBuild / version := "1.0"
|
|
ThisBuild / scalaVersion := "2.12.16"
|
|
ThisBuild / organization := "org.example"
|
|
|
|
val spinalVersion = "1.8.0b"
|
|
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 mylib = (project in file("."))
|
|
.settings(
|
|
name := "SpinalDoc-RTD-examples",
|
|
libraryDependencies ++= Seq(spinalCore, spinalLib, spinalIdslPlugin)
|
|
)
|
|
|
|
fork := true |