mirror of
https://github.com/rabbibotton/clog.git
synced 2025-12-05 18:20:36 -08:00
15 lines
471 B
Common Lisp
15 lines
471 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")
|
|
(:file "clog-connection")))
|