-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathalmighty-html-parser.asd
More file actions
28 lines (27 loc) · 1.05 KB
/
almighty-html-parser.asd
File metadata and controls
28 lines (27 loc) · 1.05 KB
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
(defsystem "almighty-html-parser"
:description "A recursive descent HTML parser with no external dependencies."
:version "0.2.0"
:license "MIT"
:serial t
:pathname "src"
:components ((:module "parser"
:serial t
:components ((:file "dom")
(:file "input-stream")
(:file "serializer")
(:file "parser")
(:file "package")))))
(defsystem "almighty-html-parser/tests"
:description "Tests for almighty-html/parser"
:depends-on (#:almighty-html/parser #:lisp-unit2)
:serial t
:components ((:module "tests/parser"
:serial t
:components ((:file "package")
(:file "dom-tests")
(:file "tree-builder-tests")
(:file "integration-tests")))
(:module "tests/html"
:serial t
:depends-on ("tests/parser")
:components ((:file "html-file-tests")))))