mirror of
https://github.com/mcanlas/6502-opcodes.git
synced 2024-11-17 09:10:27 +00:00
19 lines
339 B
Scala
19 lines
339 B
Scala
lazy val root =
|
|
project
|
|
.in(file("."))
|
|
.settings(
|
|
console / initialCommands := "import com.htmlism._",
|
|
scalafmtOnCompile := true
|
|
)
|
|
.withCats
|
|
.withTesting
|
|
.aggregate(nescant, scratchpad)
|
|
|
|
lazy val nescant =
|
|
project.withCats.withTesting
|
|
|
|
lazy val scratchpad =
|
|
project
|
|
.withCats
|
|
.withTesting
|