mirror of
https://github.com/rabbibotton/clog.git
synced 2026-02-09 09:15:44 -08:00
18 lines
562 B
Common Lisp
18 lines
562 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.1"
|
|
:serial t
|
|
:depends-on (#:clack #:websocket-driver #:alexandria #:hunchentoot #:cl-ppcre
|
|
#:bordeaux-threads #:trivial-open-browser
|
|
#:lack-middleware-static #:lack-middleware-session
|
|
#:mgl-pax)
|
|
:components ((:file "clog-connection")
|
|
(:file "clog")
|
|
(:file "clog-system")
|
|
(:file "clog-utilities")
|
|
(:file "clog-base")))
|