braino that was in the archive somehow but not in my tree.
[clinton/lisp-on-lines.git] / lisp-on-lines.asd
CommitLineData
579597e3 1;;; -*- lisp -*-
2
3(eval-when (:compile-toplevel :load-toplevel :execute)
38a016c7
DC
4 (unless (find-package :coop.tech.systems)
5 (defpackage :coop.tech.systems
579597e3 6 (:documentation "ASDF System package for meta-model.")
7 (:use :common-lisp :asdf))))
8
38a016c7 9(in-package :coop.tech.systems)
579597e3 10
579597e3 11(defsystem :lisp-on-lines
e0ae0cde
DC
12 :components ((:static-file "lisp-on-lines.asd")
13 (:file "src/packages")
14 (:module :src
15 :components ((:file "static-presentations")
16 (:file "mewa")
15bc66bd 17 (:file "validation")
bb547d37 18 (:file "validation/email-address")
e0ae0cde
DC
19 (:file "lisp-on-lines")
20 (:file "presentations")
bb547d37 21 (:file "slot-presentations")
6f63d3a4
DC
22 (:file "slot-presentations/date")
23 (:file "standard-display")
7733a777 24 (:file "standard-attributes")
6f63d3a4 25 (:file "relational-attributes"))
e0ae0cde
DC
26 :serial t)
27 (:module :components
28 :pathname "src/components/"
29 :components ((:file "range-list")
6f63d3a4
DC
30 (:file "ajax")
31 (:file "dojo"))))
e0ae0cde 32 :serial t
bb547d37 33 :depends-on (:arnesi :ucw :meta-model :split-sequence :contextl :cl-ppcre))
6f63d3a4
DC
34
35(defsystem :lisp-on-lines.example
36 :components (
37 (:file "reddit-example"))
38
39 :depends-on (:lisp-on-lines))