summaryrefslogtreecommitdiff
path: root/dnd.asd
blob: d192838a4e37ce5461d4e8ab14c5f5c2471493a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
;;;; dnd.asd

(asdf:defsystem #:dnd
  :description "Describe dnd here"
  :author "Your Name <your.name@example.com>"
  :license  "Specify license here"
  :version "0.0.1"
  :serial t
  :depends-on (#:lazybones
               #:lazybones-hunchentoot
               #:bknr.datastore
               #:spinneret
               #:swank
               #:alexandria
               #:cl-ppcre
               #:lass
               #:parenscript
               #:derrida
               #:ironclad
               #:jonathan)
  :components ((:file "package")
               (:file "utilities")
               (:file "init")
               (:file "model")
               (:file "endpoints")
               (:file "pages")
	       (:file "transactions")
               (:file "dnd")))