-
Notifications
You must be signed in to change notification settings - Fork 0
/
tazivor.asd
23 lines (23 loc) · 974 Bytes
/
tazivor.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
(asdf:defsystem :tazivor
:description "A portable Common Lisp inspector"
:license "MIT"
:author "Tarn W. Burton"
:maintainer "Tarn W. Burton"
:version (:read-file-form "version.sexp")
:homepage "https://github.com/yitzchak/Tazivor"
:bug-tracker "https://github.com/yitzchak/Tazivor/issues"
:depends-on (:closer-mop)
:components ((:module code
:serial t
:components ((:file "packages")
(:file "utilities")
(:file "interface")
(:file "object")
(:file "cons")
(:file "hash-table")
(:file "class")
(:file "standard-object")
(:file "structure-object")
(:file "symbol")
(:file "describe")
(:file "inspect")))))