forked from michaelw/cl-dot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cl-dot.asd
27 lines (26 loc) · 951 Bytes
/
cl-dot.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
;; -*- Syntax: Ansi-Common-Lisp; Mode: lisp; -*-
(asdf:defsystem :cl-dot
:version "0.9.1"
:description "Generate Dot Output from Arbitrary Lisp Data"
:author "Juho Snellman <[email protected]>"
:maintainer "Michael Weber <[email protected]>"
:depends-on (:uiop)
:serial t
:components
((:file "package")
(:file "config-graphviz")
(:file "attribute")
(:file "raw-attributes") ; generated
(:file "attributes")
(:file "cl-dot")
(:file "deprecated")
(:static-file "README.md")
(:static-file "COPYING")
(:static-file "ChangeLog")
(:module "examples"
:components
((:static-file "class-example" :pathname "class-example.lisp")
(:static-file "list-example" :pathname "list-example.lisp")
(:static-file "list-example-old" :pathname "list-example-old.lisp")
(:static-file "sb-c-example" :pathname "sb-c-example.lisp")
(:static-file "subgraph-example" :pathname "subgraph-example.lisp")))))