
Author: abaine Date: Wed Jun 13 22:08:32 2007 New Revision: 11 Modified: trunk/funds/src/funds.asd Log: Added lisp-unit dependency Modified: trunk/funds/src/funds.asd ============================================================================== --- trunk/funds/src/funds.asd (original) +++ trunk/funds/src/funds.asd Wed Jun 13 22:08:32 2007 @@ -1,13 +1,21 @@ ;;;; -*- Lisp -*- +(in-package :cl-user) + (defpackage #:funds-asd (:use :cl :asdf)) (in-package :funds-asd) (defsystem funds - :components ((:file "package") - (:module trees - :components ((:file "avl-tree")) - :depends-on ("package")))) + :serial t + :components ((:module trees + :serial t + :components ((:file "package") + (:file "avl-tree") + (:module "tests" + :components ((:file "package") + (:file "avl-tree-test"))))) + (:file "package")) + :depends-on (:lisp-unit))