mirror of
https://github.com/rabbibotton/clog.git
synced 2025-12-06 02:30:42 -08:00
36 lines
1.1 KiB
Common Lisp
36 lines
1.1 KiB
Common Lisp
;;;; clog.asd
|
|
|
|
(asdf:defsystem #:clog
|
|
:description "The Common Lisp Omnificent GUI"
|
|
|
|
:author "David Botton <david@botton.com>"
|
|
:license "BSD"
|
|
:version "0.9.0"
|
|
:serial t
|
|
:pathname "source/"
|
|
:depends-on (#:clack #:websocket-driver #:alexandria #:hunchentoot #:cl-ppcre
|
|
#:bordeaux-threads #:trivial-open-browser #:cl-dbi #:parse-float
|
|
#:sqlite #:lack-middleware-static #:mgl-pax #:quri)
|
|
:components ((:file "clog-connection")
|
|
(:file "clog")
|
|
(:file "clog-docs")
|
|
(:file "clog-utilities")
|
|
(:file "clog-base")
|
|
(:file "clog-element")
|
|
(:file "clog-element-common")
|
|
(:file "clog-canvas")
|
|
(:file "clog-form")
|
|
(:file "clog-multimedia")
|
|
(:file "clog-window")
|
|
(:file "clog-document")
|
|
(:file "clog-location")
|
|
(:file "clog-navigator")
|
|
(:file "clog-body")
|
|
(:file "clog-system")
|
|
(:file "clog-gui")
|
|
(:file "clog-helpers")))
|
|
|
|
(asdf:defsystem #:clog/tools
|
|
:depends-on (#:clog)
|
|
:pathname "tools/"
|
|
:components ((:file "clog-db-admin")))
|