diff options
Diffstat (limited to 'testiere.asd')
-rw-r--r-- | testiere.asd | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/testiere.asd b/testiere.asd index 3db3701..147b556 100644 --- a/testiere.asd +++ b/testiere.asd @@ -1,11 +1,17 @@ ;;;; testiere.asd (asdf:defsystem #:testiere - :description "Interactive Testing for DEFUN" - :author "Colin Okay <colin@cicadas.surf>" + :description "TDD system for Common Lisp" + :author "Colin OKeefe <colin@cicadas.surf>" :license "GPLv3" - :version "0.1.0" + :version "1.0.0" :depends-on (:trivia) + :pathname "src/" :serial t - :components ((:file "package") - (:file "testiere"))) + :components ((:module "legacy" + :serial t + :components ((:file "package") + (:file "testiere"))) + (:file "package") + (:file "testiere") + (:file "standard-hooks"))) |