add cpu module

This commit is contained in:
Mark Canlas 2024-01-03 15:43:19 -05:00
parent 2cf829d3eb
commit 7120b60ae7
1 changed files with 6 additions and 1 deletions

View File

@ -3,7 +3,7 @@ lazy val firepower =
.in(file("."))
.withCats
.withTesting
.aggregate(nescant, core, demo)
.aggregate(nescant, core, cpu, demo)
lazy val nescant =
project.withCats.withTesting
@ -13,6 +13,11 @@ lazy val core =
.withCats
.withTesting
lazy val cpu =
module("cpu")
.settings(description := "CPU emulation suitable for unit testing")
.withTesting
lazy val demo =
module("demo")
.dependsOn(core)