blob: 69c0021211e13e12acc84184bcb761b68f03378b (
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
|
;;;; 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 "flash")
(:file "render")
(:file "view-components")
(:file "app")
(:file "player")
(:module "game"
:serial t
:components ((:file "abstract")
(:file "views")
(:file "adventure")
(:file "hazard")
(:file "hero")
(:file "quest")
(:file "tavern")))
(:file "names")
(:file "init")
(:file "dnd")))))
|