X-Git-Url: https://git.hcoop.net/clinton/lisp-on-lines.git/blobdiff_plain/079b90842fc99823554991ff3e739da9a5d42d97..4358148e6c67fcc2ae24050c54d8050b4dc03f9d:/lisp-on-lines.asd diff --git a/lisp-on-lines.asd b/lisp-on-lines.asd index 993a672..fcb4394 100644 --- a/lisp-on-lines.asd +++ b/lisp-on-lines.asd @@ -3,14 +3,14 @@ (eval-when (:compile-toplevel :load-toplevel :execute) (unless (find-package :coop.tech.systems) (defpackage :coop.tech.systems - (:documentation "ASDF System package for meta-model.") + (:documentation "ASDF System package for Lisp On Lines") (:use :common-lisp :asdf)))) (in-package :coop.tech.systems) (defsystem :lisp-on-lines :license -"Copyright (c) 2004-2007 Drew Crampsie + "Copyright (c) 2004-2007 Drew Crampsie Contains portions of ContextL: Copyright (c) 2005 - 2007 Pascal Costanza @@ -38,26 +38,55 @@ OTHER DEALINGS IN THE SOFTWARE." :components ((:static-file "lisp-on-lines.asd") (:module :src - :components ((:file "packages") + :components ((:file "contextl-hacks") + (:file "packages") + (:file "utilities") (:file "display") (:file "attribute") - + (:file "description-class") + (:file "description") + + + + (:module :standard-descriptions + :components ((:file "t") + (:file "edit") + (:file "symbol") + (:file "list") + (:file "clos")) + ) + :serial t)) - (:file "description")) - :serial t)) + :serial t)) :serial t - :depends-on (:contextl :arnesi)) + :depends-on (:contextl :arnesi :alexandria)) + + + (defsystem :lisp-on-lines.test :components ((:module :src :components ((:file "packages-test") (:file "description-test") (:file "attribute-test") - (:file "display-test")) - :serial t)) + (:file "display-test") + (:module :ucw + :components ((:file "ucw-test")) + :serial t)) + :serial t) + (:module :tests + :components ((:module :bug + :components ((:file "0")))))) + :serial t + + + :depends-on (:lisp-on-lines :lisp-on-lines-ucw :stefil)) + - :depends-on (:lisp-on-lines :stefil)) +(if (asdf:find-system :asdf-system-connections nil) + (asdf:oos 'asdf:load-op :ucw-system-connections) + (#+sbcl sb-int:style-warn #-sbcl warn "UCW suggests asdf-system-connections in order to optionally integrate some other libraries. See http://www.cliki.net/asdf-system-connections for details and download instructions."))