6502-opcodes/build.sbt

31 lines
646 B
Plaintext
Raw Normal View History

2022-12-01 11:37:17 +00:00
lazy val firepower =
2020-03-21 03:45:13 +00:00
project
.in(file("."))
2020-08-13 01:10:19 +00:00
.withCats
2020-08-15 04:49:07 +00:00
.withTesting
2024-04-06 13:52:25 +00:00
.aggregate(nescant, core, cpu, demo, playground)
2020-08-28 06:18:25 +00:00
lazy val nescant =
2020-09-04 05:18:34 +00:00
project.withCats.withTesting
2022-05-15 05:09:48 +00:00
2022-12-04 23:36:11 +00:00
lazy val core =
module("core")
2022-05-15 05:09:48 +00:00
.withCats
2022-06-13 23:55:33 +00:00
.withTesting
2022-12-01 11:50:22 +00:00
2024-01-03 20:43:19 +00:00
lazy val cpu =
module("cpu")
.settings(description := "CPU emulation suitable for unit testing")
.withTesting
2022-12-01 11:50:22 +00:00
lazy val demo =
module("demo")
2022-12-05 22:19:50 +00:00
.dependsOn(core)
2022-12-01 11:50:22 +00:00
.withEfectMonad
2022-12-07 18:36:57 +00:00
.settings(libraryDependencies += "com.htmlism" %% "rufio-zio" % "76-c565ab28")
2023-01-02 20:58:16 +00:00
.withGitHubPackagesCredentials
.withResolver("rufio")
2024-04-06 13:52:25 +00:00
lazy val playground =
2024-04-11 13:47:43 +00:00
module("playground").withCats