blob: 3c9113b6d95291c45d59968a39df8f70acef853d (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
(asdf:defsystem #:site
:name "site"
:description ""
:author "Thomas Albers Raviola <thomas@thomaslabs.org>"
:maintainer "Thomas Albers Raviola <thomas@thomaslabs.org>"
:license "GPL-3"
:version "1.0.0"
:serial t
:depends-on (:alexandria
:split-sequence
:chains)
:pathname "lisp"
:components ((:file "package")
(:file "site"))
;; :in-order-to ((test-op (test-op "scgi-routes/tests")))
)
|