Fix missing `without-special-symbol-access' in `funcall-with-attribute-context'
[clinton/lisp-on-lines.git] / lisp-on-lines-ucw.asd
CommitLineData
4358148e 1(eval-when (:compile-toplevel :load-toplevel :execute)
2 (unless (find-package :coop.tech.systems)
3 (defpackage :coop.tech.systems
4 (:documentation "ASDF System package for meta-model.")
5 (:use :common-lisp :asdf))))
6
7(in-package :coop.tech.systems)
8
9(defsystem :lisp-on-lines-ucw
10 :components ((:module :src
11 :components
12 ((:module :ucw
13 :components ((:file "packages")
46440824 14
b7657b86 15 (:file "standard-components")
16 (:file "contextl-components")
17 (:file "html-description")
18 (:file "lol-components")
19 )
4358148e 20
21 :serial t))))
22 :serial t
23
24
2dce5119 25 :depends-on (:lisp-on-lines :ucw :puri :parenscript-classic))