2020-04-03 16:40:05 +00:00
|
|
|
(defsystem "whatsxmpp"
|
2020-05-28 17:33:03 +00:00
|
|
|
:depends-on ("usocket" "bordeaux-threads" "event-emitter" "blackbird" "cxml" "ironclad" "uuid" "sqlite" "whatscl" "drakma" "local-time" "trivial-timers" "trivial-backtrace" "trivial-mimes")
|
2020-04-03 16:40:05 +00:00
|
|
|
:serial t
|
2020-04-05 15:31:18 +00:00
|
|
|
:build-operation "program-op"
|
|
|
|
:build-pathname "whatsxmpp"
|
|
|
|
:entry-point "whatsxmpp::main"
|
2020-04-03 16:40:05 +00:00
|
|
|
:components
|
|
|
|
((:file "packages")
|
2020-06-25 15:55:37 +00:00
|
|
|
(:file "utils")
|
|
|
|
(:file "namespaces")
|
|
|
|
(:file "component")
|
|
|
|
(:file "xmpp")
|
|
|
|
(:file "xep-0030")
|
|
|
|
(:file "xep-0363")
|
2020-08-06 16:18:09 +00:00
|
|
|
(:file "xep-0115")
|
2020-04-03 16:40:05 +00:00
|
|
|
(:file "sqlite")
|
2020-06-25 15:55:37 +00:00
|
|
|
(:file "db")
|
2020-08-18 16:29:59 +00:00
|
|
|
(:file "media")
|
2020-04-03 16:40:05 +00:00
|
|
|
(:file "stuff")))
|