-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcl-amqp.asd
41 lines (38 loc) · 1.25 KB
/
cl-amqp.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
(in-package :cl-user)
(defpackage :cl-amqp.system
(:use :cl :asdf))
(in-package :cl-amqp.system)
(defsystem :cl-amqp
:version "0.4.1"
:description "AMQP 0.9.1 with RabbitMQ extensions in Common Lisp"
:maintainer "Ilya Khaprov <[email protected]>"
:author "Ilya Khaprov <[email protected]> and CONTRIBUTORS"
:homepage "https://github.com/cl-rabbit/cl-amqp"
:licence "MIT"
:depends-on ("alexandria"
"nibbles"
"cl-interpol"
"wu-decimal"
"local-time"
"collectors"
"trivial-utf-8"
"fast-io"
"log4cl")
:serial t
:components ((:module "src"
:serial t
:components
((:file "package")
(:file "util/binary-string")
(:file "util/ibuffer")
(:file "util/obuffer")
(:module "protocol"
:serial t
:components
((:file "constants")
(:file "conditions")
(:file "classes")
(:file "types")
(:file "frame")))
(:file "method"))))
:in-order-to ((test-op (test-op cl-amqp.test))))