blob: 3bf76a0cf900b60b786db601e06cc1cf0d321ca2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
;;;; fussy.asd
(asdf:defsystem #:fussy
:description "Describe fussy here"
:author "Your Name <your.name@example.com>"
:license "Specify license here"
:version "0.0.1"
:serial t
:depends-on (#:hyperquirks
#:bknr.datastore
#:lazybones-hunchentoot
#:dexador
#:spinneret
#:lass
#:parenscript
#:defclass-std)
:components ((:file "package")
(:file "fussy")))
|