mirror of
https://github.com/mcanlas/6502-opcodes.git
synced 2024-12-21 18:29:22 +00:00
23 lines
453 B
Scala
23 lines
453 B
Scala
lazy val firepower =
|
|
project
|
|
.in(file("."))
|
|
.withCats
|
|
.withTesting
|
|
.aggregate(nescant, core, demo)
|
|
|
|
lazy val nescant =
|
|
project.withCats.withTesting
|
|
|
|
lazy val core =
|
|
module("core")
|
|
.withCats
|
|
.withTesting
|
|
|
|
lazy val demo =
|
|
module("demo")
|
|
.dependsOn(core)
|
|
.withEfectMonad
|
|
.settings(libraryDependencies += "com.htmlism" %% "rufio-zio" % "76-c565ab28")
|
|
.withGitHubPackagesCredentials
|
|
.withResolver("rufio")
|