aboutsummaryrefslogtreecommitdiffhomepage
path: root/vampire.asd
blob: c618e3b250d823a479b5db50fda818a1e343ce7d (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
;;;; vampire.asd

(asdf:defsystem #:vampire
  :description "Live Collaborative Music Mixes"
  :author "Colin <colin@cicadas.surf>"
  :license  "AGPL-3.0"
  :version "0.1.0"
  :serial t
  :depends-on (#:weekend
               #:hunchentoot
               #:bknr.datastore
               #:legion
               #:defclass-std
               #:derrida
               #:ironclad
               #:jonathan
               #:swank
	       #:zippy
               #:flatbind)
  :components (;(:file "hunchentoot-handle-static-file")
               (:file "package")
               (:file "definition-macros")
               (:file "utilities")
               (:file "downloader")
               (:file "model")
               (:file "session")
               ;(:file "navigation")
               ;(:file "about")
               ;(:file "new-account")
               ;(:file "explore")
               ;(:file "login")
               ;(:file "home")
               ;(:file "playlist")
               (:file "vampire")
               (:file "run")
               (:file "zipper")
               ))