22 lines
797 B
Common Lisp
22 lines
797 B
Common Lisp
;;;; live-chat.asd
|
|
|
|
(asdf:defsystem #:live-chat
|
|
:description "Twitch.TV-like live chat on the web. Uses HTMX to poll for messages."
|
|
:author "Bubblegumdrop <staticsunn@gmail.com>"
|
|
:license "WTFPL 2+"
|
|
:version "0.1.0"
|
|
:defsystem-depends-on (:deploy) ;; so you need to quickload deploy sometime before.
|
|
:build-operation "deploy-op" ;; instead of program-op for asdf:make
|
|
:build-pathname "live-chat"
|
|
:entry-point "live-chat::main"
|
|
:depends-on (#:bordeaux-threads
|
|
#:cl-dbi
|
|
#:cl-who
|
|
#:hunchentoot)
|
|
:components ((:file "package")
|
|
(:file "live-chat-db")
|
|
(:file "live-chat-core")
|
|
(:file "live-chat-hunchentoot")
|
|
(:file "live-chat-cgi")
|
|
(:file "live-chat-main")))
|