-
Notifications
You must be signed in to change notification settings - Fork 3
/
cl-rtd.asd
27 lines (25 loc) · 1006 Bytes
/
cl-rtd.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
(asdf:defsystem "cl-rtd"
:depends-on ("alexandria"
"arrows"
"cl-interpol"
"closer-mop"
"introspect-environment"
"iterate"
"str"
"reader+swank"
"trivial-types"
#-swank "swank"
"trivial-package-local-nicknames")
:pathname #P"src/"
:serial t
:components ((:file "package")
(:file "utilities")
(:file "variables")
(:file "functions") ; functions, macros, generic functions
(:file "types") ; tested on SBCL
(:file "md-file")))
;;; Why didn't I use docparser or declt?
;;; I tried declt. But found modifying the output format to suit my needs not
;;; worth the time investment, at least for bordeaux-threads.
;;; I found docparser leaving behind some details. I liked it for generating a
;;; output independent documentation-tree, but it seems not very complete.