-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathsnooze.asd
27 lines (23 loc) · 910 Bytes
/
snooze.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
(asdf:defsystem :snooze
:depends-on (#:alexandria #:cl-ppcre #:closer-mop #:quri #:uiop #:parse-float
#:rfc2388)
:author "João Távora <https://github.com/capitaomorte>"
:version #.(with-open-file (f "VERSION") (string (read f)))
:license "LLGPL"
:description "A framework for building REST services using CLOS."
:serial t
:components ((:file "package")
(:file "constants")
(:file "safe-simple-read")
(:file "common")
(:file "api")))
(asdf:defsystem :snooze-tests
:depends-on (#:snooze #:fiasco)
:serial t
:components ((:file "snooze-tests")))
(asdf:defsystem :snooze-demo
:depends-on (#:snooze #:alexandria #:cl-who #:cl-fad
#:cl-css #:hunchentoot #:cl-json
#:local-time #:local-time-duration)
:serial t
:components ((:file "demo/lispdoc")))