source: trunk/abcl/contrib/abcl-asdf/abcl-asdf.asd @ 13806

Last change on this file since 13806 was 13806, checked in by Mark Evenson, 11 years ago

Fix ABCL-ASDF load time failure.

File size: 969 bytes
Line 
1;;;; -*- Mode: LISP -*-
2(in-package :asdf)
3
4(defsystem :abcl-asdf
5  :author "Mark Evenson"
6  :version "0.5.0"
7  :depends-on (jss)
8  :components
9  ((:module packages :pathname ""
10            :components
11            ((:file "packages")))
12   (:module base :pathname ""
13            :components
14            ((:file "abcl-asdf")
15             (:file "asdf-jar"
16                    :depends-on ("abcl-asdf"))
17             (:file "maven-embedder"
18                    :depends-on ("abcl-asdf" "asdf-jar")))
19            :depends-on (packages))))
20
21(defsystem :abcl-asdf-test
22  :author "Mark Evenson"
23  :depends-on (abcl abcl-test-lisp)
24  :components
25  ((:module tests :components
26            (#+nil (:file "example")
27                   (:file "maven")))))
28
29(defmethod perform ((o test-op) (c (eql (find-system 'abcl-asdf))))
30   "Invoke tests with (asdf:test-system 'abcl-asdf)."
31   (asdf:load-system 'abcl-asdf-test)
32   (funcall (intern (symbol-name 'run) 'abcl-asdf-test)))
33
Note: See TracBrowser for help on using the repository browser.