-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwsf.asd
More file actions
53 lines (44 loc) · 1.84 KB
/
wsf.asd
File metadata and controls
53 lines (44 loc) · 1.84 KB
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
;; (c) Дмитрий Пинский <demetrius@neverblued.info>
;; Допускаю использование и распространение согласно
;; LLGPL -> http://opensource.franz.com/preamble.html
(defpackage #:wsf-system
(:use #:common-lisp #:asdf))
(in-package #:wsf-system)
(defsystem #:wsf
:version "0.8"
:depends-on (#:hunchentoot #:alexandria #:iterate
#:blackjack #:jsun)
:serial t
:components ((:file "package")
(:file "tools")
(:file "config")
(:file "charset")
(:file "conditions")
(:file "response")
(:file "server")
(:file "lisp")
(:file "docroot-server")
(:file "docroot-data")
(:file "parse")
(:module "http"
:components ((:file "config")
(:file "acceptor")
(:file "server")
(:file "headless")
(:file "response")
(:file "session")
(:file "debug")
(:file "respond")
(:file "robot")))
(:file "pookies")
(:module "routing"
:components ((:file "route")
(:file "scope")
(:file "router")
(:file "operation")
(:file "get-parameters")
(:file "link")
(:file "setup")))
(:file "ajax")
(:file "website")
(:file "debug")))