blob: 9e11b337a771c3587d030714c0d2fc95e61c2db4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
;;;; testiere.asd
(asdf:defsystem #:testiere
:description "TDD system for Common Lisp"
:author "Colin OKeefe <colin@cicadas.surf>"
:license "GPLv3"
:version "1.0.2"
:depends-on (:trivia)
:pathname "src/"
:serial t
:components ((:module "legacy"
:serial t
:components ((:file "package")
(:file "testiere")))
(:file "package")
(:file "testiere")
(:file "standard-hooks")))
|