-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcl-ngxmpp.asd
28 lines (26 loc) · 1.18 KB
/
cl-ngxmpp.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
;;;; cl-ngxmpp.asd
;;;;
;;;; This file is part of the CL-NGXMPP library, released under Lisp-LGPL.
;;;; See file COPYING for details.
;;;;
;;;; Author: Michael Nedokushev <[email protected]>
(in-package #:cl-user)
(asdf:defsystem #:cl-ngxmpp
:name "cl-ngxmpp"
:author "Michael Nedokushev <[email protected]>"
:license "Lisp-LGPL"
:depends-on (:blackbird :alexandria :usocket :cxml :babel :cl+ssl :cl-base64 :uuid :cl-mop :cl-sasl)
:serial t
:components ((:module "src/core"
:serial t
:components ((:file "package")
(:file "utils")
(:file "connection")
(:file "xml-stream")
(:file "stanzas")
(:file "tls-negotiation")
(:file "sasl-negotiation")
(:file "adapters")
(:module "adapters/"
:serial t
:components ((:file "usocket-adapter")))))))