clog/clog.asd
2020-12-30 22:05:34 -05:00

24 lines
763 B
Common Lisp

;;;; clog.asd
(asdf:defsystem #:clog
:description "The Common Lisp Omnificent GUI"
:author "David Botton <david@botton.com>"
:license "BSD"
:version "0.0.2"
:serial t
:depends-on (#:clack #:websocket-driver #:alexandria #:hunchentoot #:cl-ppcre
#:bordeaux-threads #:trivial-open-browser
#:lack-middleware-static #:lack-middleware-session
#:mgl-pax #:quri)
:components ((:file "clog-connection")
(:file "clog")
(:file "clog-system")
(:file "clog-utilities")
(:file "clog-base")
(:file "clog-element")
(:file "clog-window")
(:file "clog-document")
(:file "clog-location")
(:file "clog-navigator")
(:file "clog-body")))