forked from m2ym/clache
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathclache.asd
30 lines (28 loc) · 930 Bytes
/
clache.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
(in-package :cl-user)
(defpackage clache-asd
(:use :cl :asdf))
(in-package :clache-asd)
(defsystem :clache
:version (:read-from-file "version.lisp-expr")
:author "Tomohiro Matsuyama"
:maintainer "Olexiy Zamkoviy"
:license "LLGPL"
:depends-on (:alexandria
:trivial-garbage
:babel
:ironclad
:cl-fad
:cl-store
:cl-annot
:cl-syntax
:cl-syntax-annot)
:components ((:module "src"
:serial t
:components ((:file "package")
(:file "utils")
(:file "protocol")
(:module "stores"
:serial t
:components ((:file "memory")
(:file "file")))
(:file "api")))))