-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinvistra.asd
39 lines (38 loc) · 1.81 KB
/
invistra.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
(cl:in-package #:asdf-user)
(defsystem :invistra
:description "A portable and extensible Common Lisp FORMAT implementation"
:license "BSD"
:author ("Robert Strandh"
"Tarn W. Burton")
:maintainer "Tarn W. Burton"
:version (:read-file-form "version.sexp")
:homepage "https://github.com/s-expressionists/Invistra"
:bug-tracker "https://github.com/s-expressionists/Invistra/issues"
:depends-on ("acclimation"
"incless"
(:feature (:not :sicl) "inravina")
"nontrivial-gray-streams")
:components ((:module code
:serial t
:components ((:file "packages")
(:file "utilities")
(:file "conditions")
(:file "generic-functions")
(:file "directive")
(:file "parse-control-string")
(:file "split-control-string")
(:file "structure-items")
(:file "control-string-compiler")
(:file "format")
(:file "formatter")
(:file "basic-output")
(:file "radix-control")
(:file "floating-point-printers")
(:file "printer-operations")
(:file "pretty-printer-operations")
(:file "layout-control")
(:file "control-flow-operations")
(:file "miscellaneous-operations")
(:file "miscellaneous-pseudo-operations")
(:file "condition-reporters-en")
(:file "interface")))))