mirror of
https://github.com/vale981/lack
synced 2025-03-04 08:51:41 -05:00
13 lines
301 B
Common Lisp
13 lines
301 B
Common Lisp
(in-package :cl-user)
|
|
(defpackage lack-test-asd
|
|
(:use :cl :asdf))
|
|
(in-package :lack-test-asd)
|
|
|
|
(defsystem lack-test
|
|
:author "Eitaro Fukamachi"
|
|
:license "LLGPL"
|
|
:depends-on (:lack
|
|
:quri
|
|
:cl-cookie
|
|
:flexi-streams)
|
|
:components ((:file "src/test")))
|