mirror of
https://github.com/vale981/lack
synced 2025-03-04 08:51:41 -05:00
17 lines
463 B
Common Lisp
17 lines
463 B
Common Lisp
(in-package :cl-user)
|
|
(defpackage t-lack-component-asd
|
|
(:use :cl :asdf))
|
|
(in-package :t-lack-component-asd)
|
|
|
|
(defsystem t-lack-component
|
|
:author "Eitaro Fukamachi"
|
|
:license "LLGPL"
|
|
:depends-on (:lack-component
|
|
:lack-test
|
|
:prove)
|
|
:components
|
|
((:test-file "t/component"))
|
|
|
|
:defsystem-depends-on (:prove-asdf)
|
|
:perform (test-op :after (op c)
|
|
(funcall (intern #.(string :run-test-system) :prove) c)))
|