removed warning which caused error
[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
2b0fd9c8
DC
15 :components ((:file "special-initargs")
16 (:file "properties")
17 ;;;; legacy UCW presentations
18 (:file "static-presentations")
19
e0ae0cde 20 (:file "mewa")
15bc66bd 21 (:file "validation")
bb547d37 22 (:file "validation/email-address")
e0ae0cde
DC
23 (:file "lisp-on-lines")
24 (:file "presentations")
bb547d37 25 (:file "slot-presentations")
6f63d3a4 26 (:file "slot-presentations/date")
a310ff0d 27 (:file "defdisplay")
6f63d3a4 28 (:file "standard-display")
2b0fd9c8 29 (:file "standard-occurence")
7733a777 30 (:file "standard-attributes")
2b0fd9c8 31 (:file "dojo-attributes")
d1b0ed7c 32 (:file "standard-wrappers")
fdeed55d
DC
33 (:file "relational-attributes")
34
35 (:file "backwards-compat"))
e0ae0cde 36 :serial t)
2b0fd9c8
DC
37 (:module :attributes
38 :pathname "src/attributes/"
39 :components ((:file "numbers")))
e0ae0cde
DC
40 (:module :components
41 :pathname "src/components/"
42 :components ((:file "range-list")
6f63d3a4
DC
43 (:file "ajax")
44 (:file "dojo"))))
e0ae0cde 45 :serial t
98438c2e 46 :depends-on (:arnesi :ucw :meta-model :split-sequence :contextl :cl-ppcre :cl-fad))
6f63d3a4
DC
47
48(defsystem :lisp-on-lines.example
49 :components (
50 (:file "reddit-example"))
51
52 :depends-on (:lisp-on-lines))