refactor: simplify project structure

This commit is contained in:
Côme ALLART
2022-11-18 23:19:11 +01:00
parent 9ccca0f64a
commit 4849860e14
10 changed files with 36 additions and 33 deletions

View File

@@ -7,9 +7,9 @@ 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("."))
lazy val projectname = (project in file("."))
.settings(
name := "SpinalTemplateSbt",
Compile / scalaSource := baseDirectory.value / "hw" / "spinal",
libraryDependencies ++= Seq(spinalCore, spinalLib, spinalIdslPlugin)
)