fixes, enhancements, and more update-to-latest-ucw stuff. minor, all of it.
[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 :serial t)
24 (:module :components
25 :pathname "src/components/"
26 :components ((:file "range-list")
27 (:file "ajax"))))
28 :serial t
29 :depends-on (:arnesi :ucw :meta-model :split-sequence :contextl :cl-ppcre))