-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
datafly.asd
33 lines (33 loc) · 1.23 KB
/
datafly.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
(defsystem "datafly"
:version "0.1"
:author "Eitaro Fukamachi"
:license "BSD 3-Clause"
:depends-on ("iterate"
"optima"
"trivial-types"
"closer-mop"
"named-readtables"
"sxql"
"dbi"
"alexandria"
"babel"
"local-time"
"function-cache"
"jonathan"
"kebab"
"log4cl")
:components ((:module "src"
:components
((:file "datafly" :depends-on ("model" "db" "cache" "logger" "inflate" "json" "syntax"))
(:file "model" :depends-on ("db" "cache" "syntax" "util"))
(:file "db" :depends-on ("logger" "syntax"))
(:file "cache" :depends-on ("syntax"))
(:file "logger" :depends-on ("syntax"))
(:file "inflate" :depends-on ("db" "syntax"))
(:file "json" :depends-on ("syntax"))
(:file "syntax")
(:file "util"))))
:description "Lightweight database library."
:long-description
#.(read-file-string (subpathname *load-pathname* "README.markdown"))
:in-order-to ((test-op (test-op "datafly-test"))))