mirror of
https://github.com/vale981/lack
synced 2025-03-04 08:51:41 -05:00
11 lines
294 B
Common Lisp
11 lines
294 B
Common Lisp
(in-package :cl-user)
|
|
(defpackage :lack-component-asd
|
|
(:use :cl :asdf))
|
|
(in-package :lack-component-asd)
|
|
|
|
(defsystem lack-component
|
|
:version "0.1"
|
|
:author "Eitaro Fukamachi"
|
|
:license "LLGPL"
|
|
:components ((:file "src/component"))
|
|
:in-order-to ((test-op (test-op t-lack-component))))
|