summaryrefslogtreecommitdiff
path: root/dnd.asd
blob: 90dacf98c1e7a2fd9c76f9b4544b3b4c52343efa (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
29
30
31
32
33
;;;; 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
	       #:quri
               #:bordeaux-threads
               #:testiere)
  :components ((:file "package")
               (:file "utilities")
               (:file "init")
               (:file "model")
               (:file "flash")
               (:file "endpoints")
               (:file "pages")
               (:file "queries")
	       (:file "transactions")
               (:file "dnd")))