-
Notifications
You must be signed in to change notification settings - Fork 2
/
wt.dom.asd
40 lines (38 loc) · 1.42 KB
/
wt.dom.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
;;;; -*- Mode: LISP -*-
(defsystem wt.dom
:author "Xiangyu He"
:mailto "[email protected]"
:license "BSD 3-Clause"
:depends-on (:alexandria
:split-sequence)
:defsystem-depends-on (:wt.vendor)
:components ((:module "dom"
:serial t
:components ((:file "package")
(:file "namespace")
(:file "tree")
(:file "mixin")
(:file "node")
(:file "attribute")
(:file "document")
(:file "element")
(:file "comment")
(:file "text")
(:file "cdata")
(:file "traversal"))))
:in-order-to ((test-op (test-op :wt.dom/test)))
:perform (load-op :after (o c)
#+lispworks
(pushnew :dom hcl:*packages-for-warn-on-redefinition*)))
(defsystem wt.dom/test
:depends-on (:wt.dom
:wt.test)
:components ((:module "test/dom"
:serial t
:components ((:file "package")
(:file "helper")
(:file "node")
(:file "traversal")
(:file "element"))))
:perform (test-op (o c)
(symbol-call :test :run! :dom-test)))