forked from archimag/restas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
restas.asd
28 lines (27 loc) · 1.19 KB
/
restas.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
;;;; restas.asd
;;;;
;;;; This file is part of the RESTAS library, released under Lisp-LGPL.
;;;; See file COPYING for details.
;;;;
;;;; Author: Moskvitin Andrey <[email protected]>
(defsystem restas
:depends-on (#:hunchentoot #:bordeaux-threads #:routes #:alexandria #:data-sift #+swank-archimag #:closer-mop )
:components
((:module "src"
:components
((:file "packages")
(:file "special" :depends-on ("packages"))
(:file "memoize" :depends-on ("special"))
(:file "errors" :depends-on ("special"))
(:file "render" :depends-on ("special"))
(:file "context" :depends-on ("special"))
(:file "module" :depends-on ("context"))
(:file "pkg-module" :depends-on ("module"))
(:file "route" :depends-on ("pkg-module" "render"))
(:file "decorators" :depends-on ("route"))
(:file "vhost" :depends-on ("special"))
(:file "hunchentoot" :depends-on ("vhost" "module" "memoize" "errors"))))
#+swank-archimag
(:module "slime"
:components ((:file "restas-swank"))
:depends-on ("src"))))