-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwt.html.asd
43 lines (41 loc) · 1.56 KB
/
wt.html.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
41
42
43
;;;; -*- Mode: LISP -*-
(defsystem wt.html
:author "Xiangyu He"
:mailto "[email protected]"
:license "BSD 3-Clause"
:depends-on (:wt.dom
:wt.svg
:alexandria)
:defsystem-depends-on (:wt.vendor)
:components ((:module "html"
:serial t
:components ((:file "package")
(:file "utility")
(:file "condition")
(:file "named-character-references")
(:file "construct")
(:file "document")
(:file "text")
(:file "element")
(:file "serialize")
(:file "tokenize")
(:file "parse"))))
:in-order-to ((test-op (test-op :wt.html/test)))
:perform (load-op :after (o c)
#+lispworks
(pushnew :html hcl:*packages-for-warn-on-redefinition*)))
(defsystem wt.html/test
:depends-on (:wt.html
:wt.test)
:components ((:module "test/html"
:serial t
:components ((:file "package")
(:file "helper")
(:file "text")
(:file "element")
(:file "document")
(:file "serialize")
(:file "tokenize")
(:file "parse"))))
:perform (test-op (o c)
(symbol-call :test :run! :html-test)))