X-Git-Url: https://git.hcoop.net/clinton/lisp-on-lines.git/blobdiff_plain/33915369a6fe59bf4f5610148b85aa370bbe2ae1..98438c2e729220f0f3b8b37caaa3661cc8528f2c:/lisp-on-lines.asd diff --git a/lisp-on-lines.asd b/lisp-on-lines.asd dissimilarity index 66% index fbb7a5b..00dddf6 100644 --- a/lisp-on-lines.asd +++ b/lisp-on-lines.asd @@ -1,35 +1,40 @@ -;;; -*- lisp -*- - -(eval-when (:compile-toplevel :load-toplevel :execute) - (unless (find-package :coop.tech.systems) - (defpackage :coop.tech.systems - (:documentation "ASDF System package for meta-model.") - (:use :common-lisp :asdf)))) - -(in-package :coop.tech.systems) - - -(defsystem :mewa - :components ((:module :src - :pathname "src/mewa/" - :components - ((:file "packages") - (:file "static-presentations") - (:file "mewa") - (:file "presentations" ) - (:file "slot-presentations")) - :serial t)) - :depends-on (:ucw :meta-model)) - -(defsystem :lisp-on-lines - :components ((:static-file "lisp-on-lines.asd") - (:module :src - :components ((:file "packages") - (:file "lisp-on-lines")) - :serial t) - - (:module :components - :pathname "src/components/" - :components ((:file "range-list") - (:file "ajax")))) -:depends-on (:meta-model :mewa :split-sequence)) +;;; -*- lisp -*- + +(eval-when (:compile-toplevel :load-toplevel :execute) + (unless (find-package :coop.tech.systems) + (defpackage :coop.tech.systems + (:documentation "ASDF System package for meta-model.") + (:use :common-lisp :asdf)))) + +(in-package :coop.tech.systems) + +(defsystem :lisp-on-lines + :components ((:static-file "lisp-on-lines.asd") + (:file "src/packages") + (:module :src + :components ((:file "static-presentations") + (:file "mewa") + (:file "validation") + (:file "validation/email-address") + (:file "lisp-on-lines") + (:file "presentations") + (:file "slot-presentations") + (:file "slot-presentations/date") + (:file "standard-display") + (:file "standard-attributes") + (:file "standard-wrappers") + (:file "relational-attributes")) + :serial t) + (:module :components + :pathname "src/components/" + :components ((:file "range-list") + (:file "ajax") + (:file "dojo")))) + :serial t + :depends-on (:arnesi :ucw :meta-model :split-sequence :contextl :cl-ppcre :cl-fad)) + +(defsystem :lisp-on-lines.example + :components ( + (:file "reddit-example")) + + :depends-on (:lisp-on-lines))