diff options
Diffstat (limited to 'site.asd')
-rw-r--r-- | site.asd | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/site.asd b/site.asd new file mode 100644 index 0000000..3c9113b --- /dev/null +++ b/site.asd @@ -0,0 +1,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"))) + ) |