truth-table/truth-table.asd

44 lines
972 B
Plaintext
Raw Normal View History

2024-09-04 03:14:57 -07:00
(defsystem #:truth-table
:version "0.0.1"
2024-09-04 03:14:57 -07:00
:description "Tools for working with logical propositions and truth tables"
:author "Alexander Rosenberg <zanderpkg@pm.me>"
:license "AGPL3"
:depends-on ())
(defsystem #:truth-table/base
:depends-on ()
2024-09-04 03:14:57 -07:00
:serial t
:components
2024-09-05 14:46:05 -07:00
((:file "base-packages")
2024-09-04 03:14:57 -07:00
(:file "parse")
(:file "eval")
(:file "table")
(:file "typeset")))
(defsystem #:truth-table/args
:depends-on (#:uiop)
:serial t
:components
2024-09-05 14:46:05 -07:00
((:file "base-packages")
(:file "arguments")))
2024-09-04 03:14:57 -07:00
(defsystem #:truth-table/cli
:depends-on (#:uiop
#:with-user-abort
#:truth-table/base
#:truth-table/args)
2024-09-04 03:14:57 -07:00
:serial t
:components
2024-09-05 14:46:05 -07:00
((:file "cli")))
(defsystem #:truth-table/web
:depends-on (#:uiop
#:reblocks
#:reblocks-ui
2024-09-05 14:46:05 -07:00
#:reblocks-lass
#:truth-table/base
#:truth-table/args)
:serial t
:components
2024-09-05 14:46:05 -07:00
((:file "web")))