-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzoglog.asd
37 lines (36 loc) · 1.31 KB
/
zoglog.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
;;; zoglog.asd
(asdf:defsystem #:zoglog
:description "Simple IRC logger with web interface"
:author "Vladimir Gorbunov <[email protected]>"
:license "MIT"
:serial t
:depends-on (#:usocket
#:split-sequence
#:postmodern
#:local-time
#:hunchentoot
#:bordeaux-threads
#:cl-who
#:cl+ssl
#:vom
#:cl-ppcre
#:flexi-streams
#:cl-base64
#:babel)
:components ((:file "package")
(:file "utils")
(:file "database")
(:file "statistics")
(:file "irc-messages")
(:file "irc")
(:module "tpl"
:serial t
:components ((:file "templates")
(:file "base-tpl")
(:file "main-tpl")
(:file "statistics-tpl")
(:file "stat-channel-tpl")
(:file "channel-tpl")))
(:file "web")
(:file "zoglog"))
:in-order-to ((asdf:test-op (asdf:test-op :zoglog-test))))