Started on the standard attributes by adding an image display.
[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 :src
15 :components ((:file "static-presentations")
16 (:file "mewa")
17 (:file "validation")
18 (:file "validation/email-address")
19 (:file "lisp-on-lines")
20 (:file "presentations")
21 (:file "slot-presentations")
22 (:file "slot-presentations/date")
23 (:file "standard-display")
24 (:file "standard-attributes")
25 (:file "relational-attributes"))
26 :serial t)
27 (:module :components
28 :pathname "src/components/"
29 :components ((:file "range-list")
30 (:file "ajax")
31 (:file "dojo"))))
32 :serial t
33 :depends-on (:arnesi :ucw :meta-model :split-sequence :contextl :cl-ppcre))
34
35 (defsystem :lisp-on-lines.example
36 :components (
37 (:file "reddit-example"))
38
39 :depends-on (:lisp-on-lines))