-
Notifications
You must be signed in to change notification settings - Fork 3
/
nmebious.asd
44 lines (44 loc) · 1.2 KB
/
nmebious.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
41
42
43
44
(asdf:defsystem #:nmebious
:description "Anonymous imageboard"
:author "ad"
:license "GPLv3"
:version "0.4.4"
:build-operation "program-op"
:build-pathname "nmebious"
:entry-point "nmebious::main"
:serial t
:depends-on (#:hunchentoot
#:cl-json
#:easy-routes
#:ironclad
#:metabang-bind
#:str
#:postmodern
#:local-time
#:cl-postgres+local-time
#:md5
#:trivial-mimes
#:cl-dotenv
#:swank
#:xml-emitter
#:websocket-driver
#:easy-routes+djula
#:dexador
#:quri
#:hunchentools
#:trivial-file-size
#:alexandria
#:clack
#:fset)
:components ((:module "src"
:components
((:file "package")
(:file "config")
(:file "utils")
(:file "db")
(:file "sockets")
(:file "nmebious")
(:file "views")
(:file "decorators")
(:file "routes"))))
:in-order-to ((test-op (test-op "nmebious-test"))))