hsx/flute.asd

16 lines
492 B
Text
Raw Normal View History

2018-06-24 17:08:30 +00:00
(defsystem flute
:author "Bo Yao <icerove@gmail.com"
:license "BSD"
:version "0.1"
:components ((:module "src"
:serial t
:components
((:file "flute"))))
:description "A beautiful, easilly composable html generation library"
:long-description
#.(uiop:read-file-string
(uiop:subpathname *load-pathname* "README.md"))
:in-order-to ((test-op (test-op flute-test)))
:depends-on (:assoc-utils
:let-over-lambda))