-
Notifications
You must be signed in to change notification settings - Fork 5
/
cl-forms.demo.asd
34 lines (34 loc) · 1.3 KB
/
cl-forms.demo.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
(asdf:defsystem #:cl-forms.demo
:serial t
:description "CL-FORM demo application"
:author "Mariano Montone"
:license "MIT"
:depends-on (#:cl-forms
#:cl-forms.who
#:cl-forms.who.bootstrap
#:djula
#:cl-forms.djula
#:cl-forms.test
#:hunchentoot
#:cl-who
#:cl-css
#:trivial-open-browser)
:components ((:module :test
:components
((:file "package")
(:file "demo")
(:module :demo-tests
:pathname "demo"
:components
((:file "fields")
(:file "models")
(:file "validation")
(:file "client-validation")
(:file "layout")
(:file "form-templates")
(:file "themes")
(:file "renderers")
(:file "composition")
(:file "tests"))
:serial t))
:serial t)))