|
Revision 2190, 0.8 kB
(checked in by hhubner, 1 year ago)
|
add more thirdparty libs
|
| Line | |
|---|
| 1 |
;;;; Anaphora: The Anaphoric Macro Package from Hell |
|---|
| 2 |
;;;; |
|---|
| 3 |
;;;; This been placed in Public Domain by the author, |
|---|
| 4 |
;;;; Nikodemus Siivola <nikodemus@random-state.net> |
|---|
| 5 |
|
|---|
| 6 |
(defsystem :anaphora |
|---|
| 7 |
:version "0.9.3" |
|---|
| 8 |
:components |
|---|
| 9 |
((:file "packages") |
|---|
| 10 |
(:file "early" :depends-on ("packages")) |
|---|
| 11 |
(:file "symbolic" :depends-on ("early")) |
|---|
| 12 |
(:file "anaphora" :depends-on ("symbolic")))) |
|---|
| 13 |
|
|---|
| 14 |
(defsystem :anaphora-test |
|---|
| 15 |
:depends-on (:anaphora :rt) |
|---|
| 16 |
:components ((:file "tests"))) |
|---|
| 17 |
|
|---|
| 18 |
(defmethod perform ((o test-op) (c (eql (find-system :anaphora)))) |
|---|
| 19 |
(operate 'load-op :anaphora-test) |
|---|
| 20 |
(operate 'test-op :anaphora-test :force t)) |
|---|
| 21 |
|
|---|
| 22 |
(defmethod perform ((o test-op) (c (eql (find-system :anaphora-test)))) |
|---|
| 23 |
(or (funcall (intern "DO-TESTS" :rt)) |
|---|
| 24 |
(error "test-op failed"))) |
|---|