-
Notifications
You must be signed in to change notification settings - Fork 2
/
wt.documentation.asd
36 lines (35 loc) · 1.39 KB
/
wt.documentation.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
;;;; -*- Mode: LISP -*-
(defsystem wt.documentation
:author "Xiangyu He"
:mailto "[email protected]"
:depends-on (:alexandria
:wt.html
:wt.json
:wt.component
:wt.http
:wt.live
:cl-ppcre
:closer-mop)
:defsystem-depends-on (:wt.vendor)
:components ((:module "documentation"
:serial t
:components ((:file "package")
(:file "utility")
(:file "style")
(:file "evil")
(:file "addressable")
(:file "symbol")
(:file "chapter")
(:file "article")
(:file "chapter-get-started")
(:file "chapter-uri")
(:file "chapter-http")
(:file "chapter-html")
(:file "chapter-css")
(:file "chapter-javascript")
(:file "chapter-json")
(:file "chapter-websocket")
(:file "chapter-component")
(:file "chapter-form")
(:file "documentation")
(:file "server")))))