forked from rabbibotton/clog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
clog.asd
56 lines (51 loc) · 1.65 KB
/
clog.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
52
53
54
55
56
;;;; clog.asd
(asdf:defsystem #:clog
:description "The Common Lisp Omnificent GUI"
:author "David Botton <[email protected]>"
:license "BSD"
:version "1.2.0"
:serial t
:pathname "source/"
:depends-on (#:clack #:websocket-driver #:alexandria #:hunchentoot #:cl-ppcre
#:bordeaux-threads #:trivial-open-browser #:parse-float #:quri
#:lack-middleware-static #:lack-request #:lack-util-writer-stream
#:closer-mop #:mgl-pax #:cl-template
#:sqlite #:cl-dbi)
:components ((:file "clog-connection")
(:file "clog")
(:file "clog-utilities")
(:file "clog-base")
(:file "clog-element")
(:file "clog-jquery")
(:file "clog-element-common")
(:file "clog-style")
(:file "clog-canvas")
(:file "clog-form")
(:file "clog-multimedia")
(:file "clog-window")
(:file "clog-document")
(:file "clog-location")
(:file "clog-navigator")
(:file "clog-body")
(:file "clog-system")
(:file "clog-panel")
(:file "clog-presentations")
(:file "clog-data")
(:file "clog-dbi")
(:file "clog-auth")
(:file "clog-gui")
(:file "clog-web")
(:file "clog-web-dbi")
(:file "clog-web-themes")
(:file "clog-helpers")))
(asdf:defsystem #:clog/docs
:depends-on (#:clog #:3BMD #:colorize)
:pathname "source/"
:components ((:file "clog-docs")))
(asdf:defsystem #:clog/tools
:depends-on (#:clog)
:pathname "tools/"
:components ((:file "clog-db-admin")
(:file "clog-builder-settings")
(:file "clog-templates")
(:file "clog-builder")))