blob: 583548b91178f480285e5aa59e0de098e05dd82c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
;;;; hypnotisml.asd
(asdf:defsystem #:hypnotisml
:description "A CL HTML Builder with In-Browser Interactivity."
:author "colin@cicadas.surf"
:license "Unlicense"
:version "0.0.1"
:pathname "src/"
:serial t
:depends-on (#:def #:alexandria #:parenscript #:argot)
:components ((:file "package")
(:file "hypnotisml")))
|