-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy patheclector-concrete-syntax-tree.asd
44 lines (36 loc) · 1.62 KB
/
eclector-concrete-syntax-tree.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
44
(defsystem "eclector-concrete-syntax-tree"
:description "Reading into concrete syntax tree objects."
:license "BSD"
:author ("Robert Strandh"
"Jan Moringen")
:maintainer "Jan Moringen"
:version (:read-file-form "data/version-string.sexp")
:depends-on ("alexandria"
(:version "concrete-syntax-tree" "0.2")
"eclector")
:components ((:module "concrete-syntax-tree"
:pathname "code/concrete-syntax-tree"
:serial t
:components ((:file "package")
(:file "client")
(:file "labeled-objects")
(:file "read"))))
:in-order-to ((test-op (test-op "eclector-concrete-syntax-tree/test"))))
(defsystem "eclector-concrete-syntax-tree/test"
:description "Test for the eclector-concrete-syntax-tree system"
:license "BSD"
:author "Jan Moringen"
:depends-on ("eclector-concrete-syntax-tree"
"eclector/test"
(:version "fiveam" "1.4"))
:components ((:module "concrete-syntax-tree"
:pathname "test/concrete-syntax-tree"
:serial t
:components ((:file "package")
(:file "utilities")
(:file "read")
(:file "client")
(:file "labeled-objects")
(:file "read-code"))))
:perform (test-op (operation component)
(uiop:symbol-call '#:eclector.concrete-syntax-tree.test '#:run-tests)))