-
Notifications
You must be signed in to change notification settings - Fork 0
/
inravina.asd
42 lines (41 loc) · 1.86 KB
/
inravina.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
(asdf:defsystem "inravina"
:description "A portable and extensible Common Lisp pretty printer."
:author "Tarn W. Burton"
:license "MIT"
:version "0.1"
:homepage "https://github.com/s-expressionists/Inravina/"
:bug-tracker "https://github.com/s-expressionists/Inravina/issues"
:in-order-to ((asdf:test-op (asdf:test-op #:inravina/test)))
:depends-on ("nontrivial-gray-streams"
"incless"
(:feature :sbcl (:require #:sb-introspect)))
:components ((:module code
:serial t
:components ((:file "packages")
(:file "types")
(:file "interface")
(:file "logical-block")
(:file "list-printers")
(:file "form-printers")
(:file "object-printers")
(:file "dispatch")
(:file "pretty-stream")
(:file "implementation")))))
(asdf:defsystem "inravina/test"
:description "Test suite for Inravina"
:author "Tarn W. Burton"
:license "MIT"
:depends-on ("alexandria"
"inravina"
"parachute")
:perform (asdf:test-op (op c) (uiop:symbol-call :parachute :test :inravina/test))
:components ((:module code
:components ((:module test
:serial t
:components ((:file "packages")
(:file "utilities")
(:file "dispatch")
(:file "pprint-indent")
(:file "pprint-tab")
(:file "list-printers")
(:file "form-printers")))))))