Refactor to use ASDF

This commit is contained in:
2024-09-04 03:14:57 -07:00
parent 24c1a03b35
commit 24904e73b5
11 changed files with 1264 additions and 1122 deletions

24
truth-table.asd Normal file
View File

@ -0,0 +1,24 @@
(defsystem #:truth-table
:description "Tools for working with logical propositions and truth tables"
:author "Alexander Rosenberg <zanderpkg@pm.me>"
:license "AGPL3"
:depends-on ())
(defsystem #:truth-table/base
:version "0.0.1"
:serial t
:components
((:file "packages")
(:file "parse")
(:file "eval")
(:file "table")
(:file "typeset")))
(defsystem #:truth-table/cli
:depends-on (#:uiop
#:with-user-abort
#:truth-table/base)
:serial t
:components
((:file "packages")
(:file "cli")))