blob: 147b556f3fbdc242d68161f7624f08958a7c4da5 (
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.0"
:depends-on (:trivia)
:pathname "src/"
:serial t
:components ((:module "legacy"
:serial t
:components ((:file "package")
(:file "testiere")))
(:file "package")
(:file "testiere")
(:file "standard-hooks")))
|