-
Notifications
You must be signed in to change notification settings - Fork 0
/
cl-ohm.asd
46 lines (43 loc) · 1.52 KB
/
cl-ohm.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
38
39
40
41
42
43
44
45
46
;;;; cl-ohm.asd
(in-package :asdf-user)
(defsystem #:cl-ohm
:version "0.2.1"
:description "An object-hash mapping for Redis in Common Lisp"
:author "Sebastian Christ <[email protected]>"
:mailto "[email protected]"
:homepage "https://github.com/rudolfochrist/cl-ohm"
:source-control (:git "[email protected]:rudolfochrist/cl-ohm.git")
:bug-tracker "https://github.com/rudolfochrist/cl-ohm/issues"
:license "MIT"
:serial t
:components ((:file "package")
(:file "utils")
(:file "connection")
(:file "conditions")
(:file "mop")
(:file "ohm-object")
(:file "ohm-counter")
(:file "ohm-collection")
(:file "ohm-list")
(:file "ohm-set-algebra")
(:file "ohm-set")
(:file "cl-ohm"))
:depends-on (#:alexandria
#:closer-mop
#:cl-redis)
:in-order-to ((test-op (load-op :cl-ohm/test)))
:perform (test-op (op system)
(asdf:clear-system system)
(uiop:symbol-call :cl-ohm :run-all-tests)))
(defsystem #:cl-ohm/test
:serial t
:components ((:module "test"
:serial t
:components
((:file "attributes")
(:file "counters")
(:file "lists")
(:file "sets")
(:file "run-tests"))))
:depends-on (#:cl-ohm
#:fiveam))