ref aufloesen
[cxml-rng.git] / cxml-rng.asd
blobb9bff3c5a3bbc11df156adc789d461c12b002c71
1 (defpackage :cxml-rng-system
2   (:use :asdf :cl))
3 (in-package :cxml-rng-system)
5 (defclass closure-source-file (cl-source-file) ())
7 #+sbcl
8 (defmethod perform :around ((o compile-op) (s closure-source-file))
9   ;; shut up already.  Correctness first.
10   (handler-bind ((sb-ext:compiler-note #'muffle-warning))
11     (let (#+sbcl (*compile-print* nil))
12       (call-next-method))))
14 (defsystem :cxml-rng
15     :default-component-class closure-source-file
16     :serial t
17     :components
18     ((:file "package")
19      (:file "parse")
20      (:file "validate")
21      (:file "test"))
22     :depends-on (:cxml :cl-ppcre))