forked from archimag/mongo-cl-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmongo-cl-driver.asd
More file actions
47 lines (43 loc) · 1.67 KB
/
mongo-cl-driver.asd
File metadata and controls
47 lines (43 loc) · 1.67 KB
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
;;;; mongo-cl-driver.asd
;;;;
;;;; This file is part of the MONGO-CL-DRIVER library, released under Lisp-LGPL.
;;;; See file COPYING for details.
;;;;
;;;; Author: Moskvitin Andrey <archimag@gmail.com>
(defsystem #:mongo-cl-driver
:depends-on (#:iterate #:closer-mop #:local-time
#:babel #:ieee-floats #:ironclad
#:bordeaux-threads #:iolib.sockets)
:pathname "src/"
:serial t
:components
((:module "bson"
:pathname "bson/"
:serial t
:components ((:file "package")
(:file "types")
(:file "encode")
(:file "decode")))
(:module "wire"
:pathname "wire/"
:serial t
:components ((:file "package")
(:file "bucket-brigade")
(:file "protocol")
(:file "connection"))
:depends-on ("bson"))
(:file "packages" :depends-on ("wire"))
(:file "database" :depends-on ("packages"))
(:file "cursor" :depends-on ("packages"))
(:file "collection" :depends-on ("cursor"))
(:file "son-sugar" :depends-on ("packages"))))
(defsystem #:mongo-cl-driver-test
:depends-on (#:mongo-cl-driver #:lift)
:components ((:module "t"
:components
((:file "suite")
(:file "bson" :depends-on ("suite"))
(:file "wire" :depends-on ("suite"))))))
(defmethod perform ((o test-op) (c (eql (find-system '#:mongo-cl-driver))))
(operate 'load-op '#:mongo-cl-driver)
(operate 'test-op '#:mongo-cl-driver-test))