Add custom allocators and returning ZPNG images
[vecto.git] / vectometry / vectometry.asd
blob72d8f5445c4499eb93a9dc824885fae71a1e23c5
1 ;;;; vectometry.asd
3 (asdf:defsystem #:vectometry
4   :author "Zach Beane <xach@xach.com>"
5   :description "2d drawing to PNGs with a more object-y interface than Vecto."
6   :license "BSD"
7   :depends-on (#:vecto)
8   :serial t
9   :components ((:file "package")
10                (:file "point")
11                (:file "box")
12                (:file "matrix")
13                (:file "operations")
14                (:file "vectometry")
15                (:file "colors")
16                (:file "box-text")))