summaryrefslogtreecommitdiff
path: root/dnd.asd
blob: adabbfb8181aad34ee1dd0b68a261fdae1a76095 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
;;;; 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
               #:defclass-std)
  :components ((:module "src"
                :serial t
                :components ((:file "package")
                             (:file "utilities")
                             (:file "model")
                             (:file "queries")
	                     (:file "transactions")
                             (:file "flash")
                             (:file "names")
                             (:file "render")
                             (:module "views"
                              :serial t
                              :components (

                                           (:file "adventure")
                                           (:file "components")
                                           (:file "hazard")
                                           (:file "hero")
                                           (:file "player")
                                           (:file "quest")
                                           (:file "rumor")
                                           ))
                             (:module "pages" 
                              :serial t
                              :components (

                                           (:file "adventure-awaits")
                                           (:file "adventure-page")
                                           (:file "doorkeeper")
                                           (:file "goddess-shrine")
                                           (:file "hero-page")
                                           (:file "join")
                                           (:file "quest-page")
                                           (:file "spymaster")
                                           (:file "tavern"))

                              )
                             (:file "endpoints")
                             (:file "init")
                             (:file "dnd")))))