-
Notifications
You must be signed in to change notification settings - Fork 0
/
wf-web.asd
41 lines (39 loc) · 1.2 KB
/
wf-web.asd
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
;;;; wf-web.asd
(asdf:defsystem #:wf-web
:description "Warflagger web application"
:author "Ben McGunigle <bnmcgn@gmail.com>"
:license "Apache License, version 2.0"
:depends-on (#:webhax
#:clack
#:ningle
#:clack-pretend
#:gadgets
#:sql-stuff
#:alexandria
#:cl-who
#:anaphora
#:thing-lister
#:ratify
#:warflagger-core
#:warflagger
#:ps-lib-tool
#:ps-gadgets
#:ps-react-gadgets
#:flaglib
#:reacl
#:lack-middleware-mount
#:clath
#:claxy
#:userfig)
:serial t
:components ((:module
:src
:serial t
:components ((:file "web/package")
(:file "web/headers")
(:file "web/misc")
(:file "web/mood")
(:file "web/things")
(:file "web/opinion-form")
(:file "web/account")
(:file "web/web")))))