15 lines
371 B
Common Lisp
15 lines
371 B
Common Lisp
;;;; backplane-server.asd
|
|
|
|
(asdf:defsystem #:backplane-server
|
|
:description "XMPP Backplane Server"
|
|
:author "Niten <niten@fudo.org>"
|
|
:version "0.1.0"
|
|
:serial t
|
|
:depends-on (:alexandria
|
|
:arrows
|
|
:cl-json
|
|
:cl-xmpp
|
|
:cl-xmpp-tls)
|
|
:components ((:file "package")
|
|
(:file "backplane-server")))
|