summaryrefslogtreecommitdiff
path: root/dnd.asd
blob: b2be4fcc02a2e86c4eefdf911645bf6d21c17c1e (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
;;;; 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
  (#:alexandria
   #:bknr.datastore
   #:bordeaux-threads
   #:cl-ppcre
   #:defclass-std
   #:derrida
   #:ironclad
   #:jonathan
   #:lass
   #:lazybones
   #:lazybones-hunchentoot
   #:parenscript
   #:quri
   #:spinneret
   #:swank
   #:testiere)
  :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")))))