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

(asdf:defsystem #:vampire
  :description "Describe vampire here"
  :author "Your Name <your.name@example.com>"
  :license  "Specify license here"
  :version "0.0.1"
  :serial t
  :depends-on (#:clog
               #:bknr.datastore
               #:legion
               #:defclass-std
               #:derrida
               #:ironclad
               #:jonathan
               #:swank)
  :components ((:file "package")
               (:file "definition-macros")
               (:file "utilities")
               (:file "downloader")
               (:file "model")
               (:file "session")
               (:file "style")
               (:file "navigation")
               (:file "new-account")
               (:file "explore")
               (:file "login")
               (:file "home")
               (:file "playlist")
               (:file "vampire")
               (:file "run")))