blob: 98a15490088c35fa178d8e7b3d1aaccc59abf50e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
;;;; hypnotisml.asd
(asdf:defsystem #:hypnotisml
:description "Describe hypnotisml here"
:author "Your Name <your.name@example.com>"
:license "Specify license here"
:version "0.0.1"
:pathname "src/"
:serial t
:depends-on (#:def #:alexandria #:parenscript #:argot)
:components ((:file "package")
(:file "hypnotisml")
(:file "dom-transform")))
|