-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcl-web-example.asd
More file actions
28 lines (27 loc) · 1.16 KB
/
cl-web-example.asd
File metadata and controls
28 lines (27 loc) · 1.16 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
;;;; cl-web-example.asd
(asdf:defsystem #:cl-web-example
:description "Describe cl-web-example here"
:author "Your Name <your.name@example.com>"
:license "Specify license here"
:depends-on (#:hunchentoot
#:cl-who
#:postmodern
#:simple-date)
:serial t
:components ((:file "package")
(:module :src
:serial t
:components
((:module :util
:serial t
:components ((:file "date-utils")
(:file "general-utils")
(:file "heroku-utils")
(:file "model-utils")
(:file "html-utils")))
(:file "models")
(:module :views
:serial t
:components ((:file "layout")
(:file "index")
(:file "new")))))))