coleslaw/coleslaw.asd

31 lines
972 B
Text
Raw Normal View History

(defsystem #:coleslaw
:name "coleslaw-core"
2011-04-16 15:45:37 -04:00
:description "Flexible Lisp Blogware"
:version "0.0.3"
:license "BSD"
:author "Brit Butler <redline6561@gmail.com>"
:pathname "src/"
2012-08-18 16:40:51 -04:00
:depends-on (:closure-template :iolib.os :local-time :alexandria)
:serial t
:components ((:file "packages")
(:file "coleslaw")
(:file "themes")
(:file "posts")
(:file "indices")
(:file "plugins"))
:in-order-to ((test-op (load-op coleslaw-tests)))
:perform (test-op :after (op c)
(funcall (intern "RUN!" :coleslaw-tests)
(intern "COLESLAW-TESTS" :coleslaw-tests))))
(defsystem #:coleslaw-tests
:depends-on (coleslaw fiveam)
:pathname "tests/"
:serial t
:components ((:file "packages")
(:file "tests")))
(defmethod operation-done-p ((op test-op)
(c (eql (find-system :coleslaw))))
(values nil))