-
Notifications
You must be signed in to change notification settings - Fork 2
/
web4r.asd
41 lines (38 loc) · 1.27 KB
/
web4r.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
(in-package :cl-user)
(defpackage :web4r-asd (:use :cl :asdf))
(in-package :web4r-asd)
(defsystem :web4r
:version "0.2.9"
:name "web4r"
:author "Tomoyuki Matsumoto <[email protected]>"
:licence "BSD"
:description "Common Lisp web application framework"
:depends-on (:my-util
:sml
:inflector
:hunchentoot
:bordeaux-threads
:elephant
:trivial-shell
:cl-gd
:flexi-streams
:trivial-backtrace
:drakma
:closure-html)
:components ((:module "src"
:serial t
:components
((:file "package")
(:file "specials")
(:file "util")
(:file "debug")
(:file "cont")
(:file "server")
(:file "valid")
(:file "pager")
(:file "pclass")
(:file "pages")
(:file "user")
(:file "image")
(:file "http")
))))