-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathylg.asd
51 lines (51 loc) · 2 KB
/
ylg.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
45
46
47
48
49
50
51
(asdf:defsystem #:ylg
:version "0.0.1"
:author "rigidus <i.am.rigidus@gmail.com>"
:licence "GPLv3"
:description "ylg project"
:depends-on (#:closer-mop
#:cl-ppcre
#:restas-directory-publisher
#:closure-template
#:cl-json
#:postmodern)
:serial t
:components ((:file "ylg")
(:file "db")
(:static-file "tpl/tpl.htm")
(:module "lib"
:serial t
:pathname "lib"
:components ((:file "entity")
(:file "datetime")
(:file "view")))
(:module "usr"
:serial t
:pathname "mod/usr"
:components ((:file "usr")
(:file "routes")))
(:module "pht"
:serial t
:pathname "mod/pht"
:components ((:file "pht")))
(:module "vot"
:serial t
:pathname "mod/vot"
:components ((:file "vot")))
(:module "ily"
:serial t
:pathname "mod/ily"
:components ((:file "ily")
(:file "view")
(:static-file "tpl.htm")))
(:module "adv"
:serial t
:pathname "mod/adv"
:components ((:file "adv")))
(:module "cmt"
:serial t
:pathname "mod/cmt"
:components ((:file "cmt")))
(:file "render")
(:file "routes")
(:file "init")))