-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy paths-expression-syntax.asd
94 lines (67 loc) · 3.55 KB
/
s-expression-syntax.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
(asdf:defsystem "s-expression-syntax"
:description "A declarative description of Common Lisp's s-expression syntax."
:license "MIT"
:author "Jan Moringen <jmoringe@techfak.uni-bielefeld.de>"
:maintainer "Jan Moringen <jmoringe@techfak.uni-bielefeld.de>"
:version (:read-file-form "version-string.sexp")
:depends-on ((:version "utilities.print-items" "0.3")
(:version "parser.packrat" "0.1")
(:version "architecture.builder-protocol" "0.10")
(:version "s-expression-syntax.expression-grammar" (:read-file-form "version-string.sexp")))
:components ((:module "base"
:pathname "code"
:serial t
:components ((:file "package")
(:file "conditions")
(:file "protocol")
(:file "semantics")
(:file "database")
(:file "macros")))
(:module "definitions"
:pathname "code/definitions"
:depends-on ("base")
:serial t
:components (; (:file "package")
(:file "names")
(:file "types")
(:file "declarations")
(:file "forms")
(:file "lambda-lists")
(:file "grammar")
(:file "bindings")
(:file "pseudo-operators")
(:file "special-operators")
(:file "definition-macros")
(:file "control-macros")
(:file "debug-macros")))
(:file "classify"
:pathname "code/classify"
:depends-on ("definitions")))
:in-order-to ((test-op (test-op "s-expression-syntax/test"))))
(asdf:defsystem "s-expression-syntax/test"
:version (:read-file-form "version-string.sexp")
:depends-on ("alexandria"
(:version "fiveam" "1.4")
(:version "s-expression-syntax" (:read-file-form "version-string.sexp")))
:components ((:module "test"
:serial t
:components ((:file "package")
(:file "protocol")
(:file "classify")))
(:module "definitions"
:pathname "test/definitions"
:depends-on ("test")
:serial t
:components ((:file "names")
(:file "types")
(:file "declarations")
(:file "forms")
(:file "lambda-lists")
(:file "bindings")
(:file "pseudo-operators")
(:file "special-operators")
(:file "definition-macros")
(:file "control-macros")
(:file "debug-macros"))))
:perform (test-op (operation component)
(uiop:symbol-call '#:s-expression-syntax.test '#:run-tests)))