massive refactoring in preparation of release.
[clinton/lisp-on-lines.git] / lisp-on-lines.asd
1 ;;; -*- lisp -*-
2
3 (eval-when (:compile-toplevel :load-toplevel :execute)
4 (unless (find-package :coop.tech.systems)
5 (defpackage :coop.tech.systems
6 (:documentation "ASDF System package for meta-model.")
7 (:use :common-lisp :asdf))))
8
9 (in-package :coop.tech.systems)
10
11 (defsystem :lisp-on-lines
12 :components ((:static-file "lisp-on-lines.asd")
13 (:file "src/packages")
14 (:module :patches
15 :components ((:file "yaclml")))
16 (:module :src
17 :components ((:file "special-initargs")
18 (:file "properties")
19 ;;;; legacy UCW presentations
20 (:file "static-presentations")
21
22 (:file "mewa")
23 (:file "validation")
24 (:file "validation/email-address")
25 (:file "lisp-on-lines")
26 (:file "presentations")
27 (:file "slot-presentations")
28 (:file "slot-presentations/date")
29 (:file "defdisplay")
30 (:file "standard-display")
31 (:file "standard-occurence")
32 (:file "standard-attributes")
33 (:file "dojo-attributes")
34 (:file "standard-wrappers")
35 (:file "relational-attributes")
36
37 (:file "lines")
38
39 (:file "backwards-compat"))
40 :serial t)
41 (:module :attributes
42 :pathname "src/attributes/"
43 :components ((:file "numbers")))
44 (:module :components
45 :pathname "src/components/"
46 :components ((:file "range-list")
47 (:file "ajax")
48 (:file "dojo"))))
49 :serial t
50 :depends-on (:arnesi :ucw :meta-model :split-sequence :contextl :cl-ppcre :cl-fad))
51
52 (defsystem :lisp-on-lines.example
53 :components (
54 (:file "reddit-example"))
55
56 :depends-on (:lisp-on-lines))