-
-
Notifications
You must be signed in to change notification settings - Fork 63
/
caveman2.asd
37 lines (34 loc) · 1.13 KB
/
caveman2.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
#|
This file is a part of caveman project.
Copyright (c) Eitaro Fukamachi ([email protected])
|#
#|
Lightweight web application framework
Author: Eitaro Fukamachi ([email protected])
|#
(defsystem "caveman2"
:version "2.4.0"
:author "Eitaro Fukamachi"
:license "LLGPL"
:depends-on ("ningle"
"lack-request"
"lack-response"
"cl-project"
"dbi"
"cl-syntax-annot"
"myway"
"quri")
:components ((:module "v2/src"
:components
((:file "caveman" :depends-on ("app" "route" "helper" "skeleton"))
(:file "app" :depends-on ("exception"))
(:file "route" :depends-on ("app" "nested-parameter"))
(:file "nested-parameter")
(:file "helper" :depends-on ("app"))
(:file "exception")
(:file "skeleton"))))
:description "Lightweight web application framework"
:long-description
#.(read-file-string
(subpathname *load-pathname* "README.markdown"))
:in-order-to ((test-op (test-op "caveman2-test"))))